// JavaScript Document

$(document).ready(function() {
			
		
			$("#mensage").animate({top:300}, "slow");
			
			$("#cerrar").click(function(){
				
				if ($("#mensage").show()){
					
					$("#mensage").hide();
				}
				
			});
		
			
		});
