// JavaScript Document// JavaScript Document


function description(){


		//fade in new text
	
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".description").css("display", "block" );
	
		  
	     $(".tabs").children(".desc").css("font-weight", "bold");
		 $(".tabs").children(".description-title").css("color", "white");
		 $(".tabs").children(".description-title").css("text-decoration", "underline");
	
}

function parts(){


		//fade in new text
	
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".parts").css("display", "block" );
	
              $(".tabs").children().css("font-weight", "normal");
		  $(".tabs").children().css("text-decoration", "none");
		  
	     $(".tabs").children(".parts-title").css("font-weight", "bold");
		 $(".tabs").children(".parts-title").css("color", "white");
		 $(".tabs").children(".parts-title").css("text-decoration", "underline");
	
}

function instructions(){


		//fade in new text
	
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".instructions").css("display", "block" );
	
         $(".tabs").children().css("font-weight", "normal");
		  $(".tabs").children().css("text-decoration", "none");
		  
	     $(".tabs").children(".instructions-title").css("font-weight", "bold");
		 $(".tabs").children(".instructions-title").css("color", "white");
		 $(".tabs").children(".instructions-title").css("text-decoration", "underline");

}

function recommended(){


		//fade in new text
	
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".recommended").css("display", "block" );
	
         $(".tabs").children().css("font-weight", "normal");
		  $(".tabs").children().css("text-decoration", "none");
		  
	     $(".tabs").children(".recommended-title").css("font-weight", "bold");
		 $(".tabs").children(".recommended-title").css("color", "white");
		 $(".tabs").children(".recommended-title").css("text-decoration", "underline");

}