jQuery(function(){
jQuery('.caixa_pub2').click(function(){
jQuery('.caixa_pub2').css('display', 'none');
})
})
window.setTimeout("show()", 60000);

function show(){
jQuery('.caixa_pub').fadeIn('slow');
jQuery('.caixa_pub2').fadeIn('slow');
}

jQuery(function(){
jQuery('#fechar_pub').click(function(){
jQuery('.caixa_pub').fadeOut('fast', function(){
jQuery('#caixa_ads').slideDown('fast');
});
})
jQuery('#abrir').click(function(){
jQuery('#caixa_ads').slideUp('fast', function(){
jQuery('.caixa_pub').fadeIn('fast');
});
})

jQuery('.bloq-video').click(function(){
jQuery(this).css('display', 'none');
})

jQuery('#fechar-video').click(function(){
jQuery('.bloq-video').css('display','none');
})

});
