$(document).ready(function(){
	
	$('#overlay').click(function(){
		$(this).hide();
        $('#nota').hide();
    });

    $('#nota').click(function(){
        $(this).hide();
        $('#overlay').hide();
    });

    pos = ($('body').width()/2) - 275;

    $('#nota').css("left", pos+"px");
    $('#nota').css("top", "150px");
	   
});