
$("#frmNews").submit( function() {
	var nome 		= $("#nome");
	var email		= $("#email");
	
	if (nome.val() == "" || nome.val() == "Digite seu nome")
	{
		jAlert(nome.attr("title"), 'Cosmopolitan Hotel!',	function() { nome.focus() } );		
		return false;		
	}
	
	if (validaEmail( email.val() ) == false)
	{
		jAlert( email.attr("title"), 'Cosmopolitan Hotel!',	function() { email.focus() });
		email.focus();
		return false;
	}
});




