var Contato={
	
	validar:function(form){
		if($Form.validate(form)) {
			$j.ajax({
				url:'enviarContato.php', type:'post', data:$j(form).serialize(),
				success:function(response){
					if(response == "" || response.lenth ==1){
						alert('Sua mensagem foi enviado com sucesso!!!');
						form.reset();
					}else{
						alert('Ocorreu um erro ao tentar enviar sua mensagem \n tente novamente mais tarde');
					}
				}
			});
		}
		return false
	}
}