$(function() {
	// LIMPA CAMPOS DE FORMULARIOS -----------------------------------------
	$("#s").focus(function () {
		if( $("#s").attr("value") == "pesquise" ) {
			$("#s").attr("value", "");
		}
	});
	$("#news_nome").focus(function () {
		if( $(this).attr("value") == "nome" ) {
			$(this).attr("value", "");
		}
	});
	$("#news_email").focus(function () {
		if( $(this).attr("value") == "e-mail" ) {
			$(this).attr("value", "");
		}
	});	
	
	// THUMB PROJETOS ------------------------------------------------------
	// _mouse sobre: apresenta os dados e torna thumbnail transparente
	// _mouse sai: esconde os dados e torna thumbnail opaco
	$(".thumb_projeto").children("a").children("div").addClass("invisivel");
	$(".thumb_projeto").hover(
	function() {
		$(this).children("a").children("img").addClass("fadeOut");
		$(this).children("a").children("div").addClass("visivel");
	},
	function() {
		$(this).children("a").children("img").removeClass("fadeOut");
		$(this).children("a").children("div").removeClass("visivel");
	});
	// THUMB PROJETOS ------------------------------------------------------
	$(".thumb_projeto_lateral").children("a").children("div").addClass("invisivel");
	$(".thumb_projeto_lateral").hover(
	function() {
		$(this).children("a").children("img").addClass("fadeOut");
		$(this).children("a").children("div").addClass("visivel");
	},
	function() {
		$(this).children("a").children("img").removeClass("fadeOut");
		$(this).children("a").children("div").removeClass("visivel");
	});
	 
	// TEXTOS DO BLOG ------------------------------------------------------
	// _mouse sobre: muda classe dos elementos
	// _mouse sai: retorna a classe dos elementos para a original
	$(".post_home").hover(
	function() {
		$(this).children(".data_post").children("span").css("background-color", "#cccccc");
		$(this).children(".titulo_post").css("color", "#cccccc");
		$(this).children(".trecho_post").css("color", "#cccccc");;
	},
	function() {
		$(this).children(".data_post").children("span").css("background-color", "#ffffff");		
		$(this).children(".titulo_post").css("color", "#ffffff");	
		$(this).children(".trecho_post").css("color", "#ffffff");	
	});	
	// TEXTOS DO BLOG NA LATERAL -------------------------------------------
	$(".post_lateral").hover(
	function() {
		$(this).children(".data_post_lateral").children("span").css("background-color", "#cccccc");	
		$(this).children(".titulo_post_lateral").css("color", "#cccccc");	
		$(this).children(".trecho_post").css("color", "#cccccc");
	},
	function() {
		$(this).children(".data_post_lateral").children("span").css("background-color", "#ffffff");		
		$(this).children(".titulo_post_lateral").css("color", "#ffffff");	
		$(this).children(".trecho_post").css("color", "#ffffff");	
	});
	// TEXTOS DO BLOG NO BLOG ----------------------------------------------
	$(".post_lista").hover(
	function() {
		$(this).children(".data_post").children("span").css("background-color", "#cccccc");	
		$(this).children(".titulo_post").css("color", "#cccccc");	
		$(this).children(".trecho_post").css("color", "#cccccc");
	},
	function() {
		$(this).children(".data_post").children("span").css("background-color", "#ffffff");		
		$(this).children(".titulo_post").css("color", "#ffffff");	
		$(this).children(".trecho_post").css("color", "#ffffff");	
	});

});