
$(document).ready(function(){  

	$("a.tab").click(function () {  
	
		$(".active").removeClass("active");
		
		$(this).addClass("active");
		
		$(".content").slideUp("medium");
		
		var content_show = $(this).attr("title");
		
		$("#"+content_show).slideDown("fast");
		
	
	});
	
	
	$(".power-and-speed, .power-and-speed p").fadeTo("", 0.4);

	$(".power-and-speed, .power-and-speed p").hover(function(){
		$(this).fadeTo("fast", 0.2); 
	},function(){
   		$(".power-and-speed, .power-and-speed p").fadeTo("fast", 2.4); 
	});
	
	

	
});
