// JavaScript Document// JavaScript Document


function description(){


		//fade in new text
	
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".description").css("display", "block" );
		
		if(document.getElementById('divdescription').style.height < '375px')
			document.getElementById('divdescription').style.height = "375px";
	
       // bold number when clicked
	        $(".tabs").children().css("font-weight", "normal");
		  $(".tabs").children().css("text-decoration", "none");
		  
	     $(".tabs").children(".description-title").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" );
		
		if(document.getElementById('divparts').style.height < '375px')
			document.getElementById('divparts').style.height = "375px";
	
              $(".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" );
		
		if(document.getElementById('divinstructions').style.height < '375px')
			document.getElementById('divinstructions').style.height = "375px";
	
         $(".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" );
		
		if(document.getElementById('divrecommended').style.height < '375px')
			document.getElementById('divrecommended').style.height = "375px";
	
         $(".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");

}

function rigsTab() {
	//fade in new text
	    $("div.customer").children().css("display", "none" ); 
		$("div.customer").children(".rigsdiv").css("display", "block" );
		
		if(document.getElementById('divrigs').style.height != '375px')
			document.getElementById('divrigs').style.height = "375px";
	
         $(".tabs").children().css("font-weight", "normal");
		  $(".tabs").children().css("text-decoration", "none");
		  
	     $(".tabs").children(".rigs-title").css("font-weight", "bold");
		 $(".tabs").children(".rigs-title").css("color", "white");
		 $(".tabs").children(".rigs-title").css("text-decoration", "underline");
}

