function cerrarModal(){
	$('#trama').fadeOut('slow');
}
//To do after loading HTML
$(document).ready(function()
{
	$('#email').focus(function() {
		this.value='';
	});
	
});