// JavaScript Document


function service(){


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

function advice(){


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

function specials(){


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

}