/**
 * Arquivo de javascript do Blog Da Thassia
 * 
 * @autor: Fabiano Chiaretto Fernandes
 * @empresa: C4 M’dia
 * @ultimaAltera¨‹o: 21:22 19/11/2011
 * @contact chiaretto@gmail.com
 */



// Aguarda o carregamento total

$(document).ready(function() {

	
});


$(function(){

	/* Tratamento dos inputs dos formul‡rios */
	$('input:text').focus(function(){
		if ($(this).val() == $(this)[0].defaultValue) {
			$(this).val('');
		}
	});
	$('input:text').focusout(function(){
		if ($(this).val() == "" || $(this).val() == " ") {
			var defVal = $(this)[0].defaultValue;
			$(this).val(defVal);
		}
	});
	$('textarea').focus(function(){
		if ($(this).val() == $(this)[0].defaultValue) {
			$(this).val('');
		}
	});
	$('textarea').focusout(function(){
		if ($(this).val() == "" || $(this).val() == " ") {
			var defVal = $(this)[0].defaultValue;
			$(this).val(defVal);
		}
	});
	
	// Inscricao
	$(".formulario").validate({
		rules: {
			nome: "required",
			email: "required",
			email: {
				required: true,
				email: true
			}
		},
		messages: {
			nome: "Campo obrigat&oacute;rio",
			email: "Email inv&aacute;lido",
		}
	});
	
	/* Mascaras */
	$("#nascimento").mask("99/99/9999");
	


});



