$(document).ready
( 
	function() 
	{
		//contato form
		$("#comentarios_form").validate
		(
			{
				rules: 
				{
					"comentarios[nome]":
					{
						required: true,
						minlength: 5
                    },
					"comentarios[email]":
					{
						required: true, 
						email: true
                    },
					"comentarios[mensagem]":
					{
						required: true, 
						minlength: 10
                    }
				},
				messages:				
				{
					"comentarios[nome]"		:{required	: "» Digite seu nome",minlength: "» O seu nome deve conter, no mínimo, 5 caracteres"},
					"comentarios[email]"	:{required	: "» Digite seu e-mail",email:"» Digite um e-mail válido"},
					"comentarios[mensagem]"	:{required	: "» Digite um assunto",minlength: "» O assunto deve conter, no mínimo, 10 caracteres"}
				}
			}
		)
		
		//contato form
		$(".c_nome").focus
		(
			function()
			{
				if(this.value == "nome")
				{
					this.value = "";
				}
			}
		)
		$(".c_email").focus
		(
			function()
			{
				if(this.value == "e-mail")
				{
					this.value = "";
				}
			}
		)
		$(".c_mensagem").focus
		(
			function()
			{
				if(this.value == "mensagem")
				{
					this.value = "";
				}
			}
		)
		
		$(".b_submit").click
		(
			function()
			{
				if(confirm("Deseja enviar o comentário?"))
				{
					$("#comentarios_form").submit();
				}
			}
		)
		
		//IMAGEM
		$(".c_change").mouseover
		(
			function()
			{
				$(".c_change").attr("src","_img/botao-ver-todos-comentarios-B.gif");
			}
		)
		$(".c_change").mouseout
		(
			function()
			{
				$(".c_change").attr("src","_img/botao-ver-todos-comentarios-A.gif");
			}
		)		
	}
)
