//function mostraModal() {
//	maionese = jQuery("fundo_modal");
//	maionese.style.height="1100px";
//	maionese.style.width=jQuery("content").offsetWidth+"px";
//	maionese.show();
//}

jQuery(document).ready(function() {

    var myDate = new Date();
    //myDate.getDate();
    var day = myDate.getDay() - 1;
    var month = myDate.getMonth() + 1;
    var year = myDate.getFullYear();
    //alert('day=' + day + ' month=' + month + 'ano=' + year);

    if (year <= 2010) {
        if (day <= 8 && month <= 1) {
            //alert('mostra');
            jQuery("#fundo_modal").show();
            jQuery("#modal").show();
        }
        jQuery("#fundo_modal").click(function() {
            jQuery("#fundo_modal").hide();
            jQuery("#modal").hide();
        });

        jQuery("#fechar_modal").click(function() {
            jQuery("#fundo_modal").hide();
            jQuery("#modal").hide();
        });
    }
});



function fecha() {
    jQuery("#fundo_modal").hide();
    jQuery("#modal").hide();
}

