$(document).ready(function() {

/* curriculo dos diretores - on-hover */
	$(".area_hover", this).hover( 	function() { $('.curriculo',this).show()}, 
									function() { $('.curriculo',this).hide(); });

	$(".area_hover", this).hover( 	function() { $('.curriculo_finais',this).show()}, 
									function() { $('.curriculo_finais',this).hide(); });


	$(".btn").click(function () {
		$(this).toggleClass("mostra").parents('table').find('.box div.mais_informacoes').toggleClass("mostra"); /* sobe até o elemento pai (parent) de ambos e depois procura (find) o box que receberá a class */
	});

	$("#apresentacoes ul li a:first").addClass("primeiro");

	$("#apresentacoes ul li a").click(function () {
		$(this).addClass("active");
	});

} );


jQuery(document).ready(function(){
	
	jQuery('#btn-pilar1').mouseover(function(){
	jQuery('.escondivel').hide();
	jQuery('#pilar1').fadeIn(300);
	})		
			

	jQuery('#btn-pilar2').mouseover(function(){
	jQuery('.escondivel').hide();
	jQuery('#pilar2').fadeIn(300);
	})		

	jQuery('#btn-pilar3').mouseover(function(){
	jQuery('.escondivel').hide();
	jQuery('#pilar3').fadeIn(300);
	})	
	

	jQuery('#btn-2009').click(function(){
		jQuery('.escondivel').hide();
		jQuery('#2009').fadeIn(300);
		})	
	
	jQuery('#btn-2008').click(function(){
	jQuery('.escondivel').hide();
	jQuery('#2008').fadeIn(300);
	})	
	
	jQuery('#btn-2007').click(function(){
	jQuery('.escondivel').hide();
	jQuery('#2007').fadeIn(300);
	})	
	
	jQuery('#btn-2006').click(function(){
	jQuery('.escondivel').hide();
	jQuery('#2006').fadeIn(300);
	})	
	
	jQuery('#btn-2005').click(function(){
	jQuery('.escondivel').hide();
	jQuery('#2005').fadeIn(300);
	})	
	
	jQuery('#btn-2004').click(function(){
	jQuery('.escondivel').hide();
	jQuery('#2004').fadeIn(300);
	})	

});

function area(nome) {
	jQuery('.escondivel').hide();
	jQuery('#'+nome+'').fadeIn(300);
}
