$(document).ready(function() {

	// ---- MUDA COR DAS CAIXAS NA SIDE-BAR

	$("#side-bar p").hover(function (){
		$(this).stop();
		$(this).find("a, span").stop();
		$(this).css({backgroundColor: '#01357b', color: '#FFF'});
		$(this).find("a, span").css({color: '#FFF'});
	}, function(){
		$(this).animate({backgroundColor: '#e8f9ff', color: '#000'}, 300);
		$(this).find("a, span").animate({color: '#006699'}, 300);
	});
	
	$("#c_menu ul li").hover(function(){
		$(this).css("background","#FFF");					   
	},function(){
		$(this).css("background","none");
	});
	
/* ************************************************************************** */
/* ******************************** CONTATO ********************************* */
/* ************************************************************************** */
	// ---- MUDA COR DOS BOTŐES NA PÁGINA DE CONTATO
	$("#frm_contato .botao").hover(function (){
		$(this).css({ "color" : "#0088CC"})
	}, function(){
		$(this).css({ "color" : ""})
	});
	
	// ---- MUDA BORDA DOS input E textarea NA PÁGINA DE CONTATO
	$("#frm_contato input:text, #frm_contato textarea").focus(function (){
		$(this).css({ "border" : "1px solid #666"})
	});
	$("#frm_contato input:text, #frm_contato textarea").blur(function(){
		$(this).css({"border" : "1px solid #aaa"})
	});
	
	// ---- VALIDA E ENVIA O FORMULÁRIO NA PÁGINA DE CONTATO
	$("#frm_contato").submit(function(event){
		event.preventDefault();
		var campo = new Array;
		var error = "";
		
		$("#frm_contato input:text, #frm_contato textarea").each(function(){
			campo.push($(this).val()); 
			if($(this).val() == ""){
				error += $(this).attr("name").toUpperCase()+"\n";
			}		
		});
		
		if(error != ""){
			alert("Preencha o(s) campo(s) abaixo: \n"+error);
			return false;
		}
		else {
			$("#msgBox").load("envia_contato.php", {nome: campo[0], email: campo[1], cidade: campo[2], mensagem: campo[3]});
		}
	});

/* ****************************************************************************** */
/* ******************************** COMENTARIOS ********************************* */
/* ****************************************************************************** */
	// ---- MUDA COR DOS BOTŐES NA PÁGINA DE COMENTARIOS
	$("#add_comentario .botao").hover(function (){
		$(this).css({ "color" : "#0088CC"})
	}, function(){
		$(this).css({ "color" : ""})
	});
	
	// ---- MUDA BORDA DOS input E textarea NA PÁGINA DE COMENTARIOS
	$("#add_comentario input:text, #add_comentario textarea").focus(function (){
		$(this).css({ "border" : "1px solid #333"})
	});
	$("#add_comentario input:text, #add_comentario textarea").blur(function(){
		$(this).css({"border" : "1px solid #aaa"})
	});
	
	// ---- TORNA VISIVEL O FORMULARIO DE COMENTARIOS
	$("#comentar").click(function(){
		$("#add_comentario").fadeIn(600);
	});
	
	var chavePost = $("#post").attr("name");
	$("#comm").load("comentarios.php", {chave : chavePost});
	










});

