$(document).ready(function(){
    var box_width = $('#anonovo' ).width();
    var box_height = $('#anonovo' ).height();
    var win_width = $(window).width();
    var win_height = $(window).height();

    var left = ( win_width / 2 ) - ( box_width / 2 );
    var top = ( win_height / 2 ) - ( box_height / 2 );

    $('#outlet-notification').css( 'left', left );
    $('#outlet-notification').css( 'top', top );
    $('#outlet-notification').click(function(){
        $(this).hide('slow');
    });

    $('#anonovo').show('slow');
	



    //alert( window.screen.width / 2);
    //alert( document.getElementById('outlet-notification').style.height);
});

	function fechar() { 
	document.getElementById("anonovo").style.display = 'none';
	}
// JavaScript Document
