//this is jquery for the text to show/hide tabs on the product detail page

   $(document).ready(function(){
	//hides h4s that are there for script to degrade gracefully
	$(".tabNav").show();
	$("#tabs h4").hide();
	$("#what").hide();
	//$("#why").hide();
	// When a link is clicked
		$("ul.tabNav li a, #gettouch").click(function () {
		
			// switch all tabs off
			$(".active").removeClass("active");
			// switch this tab on
			$(this).addClass("active");
			
			// slide all content up
			$(".infoBox").hide();
		
			// slide this content up
			var content_show = $(this).attr("rel");
			$("#"+content_show).show();
		  return false;
		});
	

});
