$(document).ready(function () {
	 $(".subtit").click(function() { 
		$(".subtit").css("background-position","top left");
		$(".subtit").attr("id","fechado");
		if($(this).css("background-position") != "bottom left") {
	   		$(this).css("background-position","0 -20px");		
			$(this).attr("id","aberto");
		} 		
	 });
	 
	 $(".subtit").hover(
      function () {
		if( $(this).attr("id") == "fechado") {        	
			$(this).css("background-position","0 -20px");
		}
      }, 
      function () {
		if( $(this).attr("id") == "fechado") {
	    	$(this).css("background-position","top left");
		}
      }
    );


});		


$(document).ready(function () {
   $(".a_vender_mais_melhor").click(function() { 
   		$(".ds_marketing_business").hide("slow");
		$(".ds_transferir_conhecimentos").hide("slow");     
   		$(".ds_vender_mais").show("slow");
   });
   
   $(".a_marketing_business").click(function() {   
   		$(".ds_transferir_conhecimentos").hide("slow");     
   		$(".ds_vender_mais").hide("slow"); 
   		$(".ds_marketing_business").show("slow");   
   });
   
   $(".a_transferir_conhecimentos").click(function() {   
   		$(".ds_vender_mais").hide("slow");
		$(".ds_marketing_business").hide("slow");
		$(".ds_transferir_conhecimentos").show("slow");   
		
   });
});

$(document).ready(function () {
   $(".a_produto").click(function() { 
   		$(".img_formula").css("background","url(images/titulos/formula02.gif)");		
		$(".ds_marca").hide("slow"); 
		$(".ds_acesso").hide("slow");  
		$(".ds_comunicacao").hide("slow");  
		$(".ds_produto").show("slow");   
   });
   
   $(".a_marca").click(function() {   
   		$(".img_formula").css("background","url(images/titulos/formula03.gif)");	
		$(".ds_produto").hide("slow"); 
		$(".ds_acesso").hide("slow");  
		$(".ds_comunicacao").hide("slow");			
		$(".ds_marca").show("slow");     
   });
   
   $(".a_acesso").click(function() {  
   		$(".img_formula").css("background","url(images/titulos/formula04.gif)");	
		$(".ds_produto").hide("slow"); 
		$(".ds_marca").hide("slow");  
		$(".ds_comunicacao").hide("slow");
		$(".ds_acesso").show("slow");   		
   });
   
   $(".a_comunicacao").click(function() {   
   		$(".img_formula").css("background","url(images/titulos/formula05.gif)");	
		$(".ds_produto").hide("slow"); 
		$(".ds_marca").hide("slow");  
		$(".ds_acesso").hide("slow");
		$(".ds_comunicacao").show("slow");   
   });   
});

$(document).ready(function () {
	$("#form_produto").click(function() { 
		$(".img_formula").css("background","url(images/titulos/formula02.gif)");	
		$(".ds_marca").hide("slow"); 
		$(".ds_acesso").hide("slow");  
		$(".ds_comunicacao").hide("slow");  
		$(".ds_produto").show("slow"); 
		$(".subtit").css("background-position","top left");
		$(".a_produto").css("background-position","0 -20px");
	}); 
	$("#form_marca").click(function() { 
		$(".img_formula").css("background","url(images/titulos/formula03.gif)");
		$(".ds_produto").hide("slow"); 
		$(".ds_acesso").hide("slow");  
		$(".ds_comunicacao").hide("slow");			
		$(".ds_marca").show("slow");  
		$(".subtit").css("background-position","top left");
		$(".a_marca").css("background-position","0 -20px");
	}); 
	$("#form_acesso").click(function() { 
		$(".img_formula").css("background","url(images/titulos/formula04.gif)");
		$(".ds_produto").hide("slow"); 
		$(".ds_marca").hide("slow");  
		$(".ds_comunicacao").hide("slow");
		$(".ds_acesso").show("slow"); 
		$(".subtit").css("background-position","top left");
		$(".a_acesso").css("background-position","0 -20px");
	}); 
	$("#form_comunicacao").click(function() { 
		$(".img_formula").css("background","url(images/titulos/formula05.gif)");	
		$(".ds_produto").hide("slow"); 
		$(".ds_marca").hide("slow");  
		$(".ds_acesso").hide("slow");
		$(".ds_comunicacao").show("slow"); 
		$(".subtit").css("background-position","top left");
		$(".a_comunicacao").css("background-position","0 -20px");
	}); 
	
});						

$(document).ready(function () {
  $(".a_nossas_crencas").click(function() {   
		$(".ds_nossos_valores").hide("slow");  
		$(".ds_nossa_equipe").hide("slow"); 
		
		$(".ds_nossas_crencas").show("slow");   
   });
  $(".a_nossos_valores").click(function() {   
		$(".ds_nossas_crencas").hide("slow");  
		$(".ds_nossa_equipe").hide("slow"); 
		
		$(".ds_nossos_valores").show("slow");   
   });
  $(".a_nossa_equipe").click(function() {   
		$(".ds_nossas_crencas").hide("slow");  
		$(".ds_nossos_valores").hide("slow"); 
		
		$(".ds_nossa_equipe").show("slow");   
   });
});
function equipe(id) {
	$("#"+id).toggle("slow");
	
}



