$(function(){
	$('#gallery a').lightBox();
	$("#menu li").hover(
		function(){$(this).children('ul').fadeIn("fast");},
		function(){$(this).children('ul').fadeOut("fast");}
	);
				
	$('.en').hide();
	$('.enviar').click(function(){

		var nome = $('.nome').val();
		var email = $('.email').val();
		var fone = $('.fone').val();
		var assunto = $('.assunto').val();
		var msg = $('.msg').val();
		
		if(nome == '' || fone == '' || assunto == '' || msg == ''){
			alert('Campos (*) são obrigatórios!');
		}else{
			$('.enviar').hide();
			$('.en').show();
			$("#mensagemerror").hide();
			$("#mensagemok").hide();

			$.post("http://www.gilsantos.com.br/php-script/func_maito.php", {nome: nome, email: email, fone: fone, assunto: assunto, msg: msg}, function(mailto){
				complete: $('.en').fadeOut(); $('.enviar').show();
				if(mailto == true){
					$("#mensagemok").show("fast");
					$('.nome').val('');
					$('.email').val('');
					$('.fone').val('');
					$('.assunto').val('');
					$('.msg').val('');
				}else{
					$("#mensagemerror").show("fast");
				};
			});
		}
	});
});
