// JavaScript Document// JavaScript Document

function size(){

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

function info(){

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