window.setTimeout("show()", 60000);
function show(){
    jQuery('#caixa_pub').fadeIn('slow');
    jQuery('.box_pub_video').fadeIn('slow');
}
jQuery(document).ready(
	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(function(){
    jQuery('.box_pub_video').click(function(){
        jQuery('.box_pub_video').css('display', 'none');
    })
})