 $(document).ready(function(){
	//~ var url=document.location.href;
	//~ if(url.search(/index/)!=-1)
	//~ {
		//~ $("#index").css("background-color","#4482b8");
		//~ $("#index").find("a").addClass("fff");
	//~ }
	//~ if(url.search(/company/)!=-1)
	//~ {
		//~ $("#company").css("background-color","#4482b8");
		//~ $("#company").find("a").addClass("fff");
	//~ }
	//~ var t_url=$("#url");
	//~ if(t_url.search(t_url)!=-1)
	//~ {
		//~ $("#showerroom").css("background-color","#4482b8");
		//~ $("#showerroom").find("a").addClass("fff");
	//~ }
	//~ if(t_url.search(t_url)!=-1)
	//~ {
		//~ $("#ceramic").css("background-color","#4482b8");
		//~ $("#ceramic").find("a").addClass("fff");
	//~ }
	//~ if(url.search(/news/)!=-1)
	//~ {
		//~ $("#news").css("background-color","#4482b8");
		//~ $("#news").find("a").addClass("fff");
	//~ }
	//~ if(url.search(/blog/)!=-1)
	//~ {
		//~ $("#blog").css("background-color","#4482b8");
		//~ $("#blog").find("a").addClass("fff");
	//~ }
	//~ if(url.search(/contact/)!=-1)
	//~ {
		//~ $("#contact").css("background-color","#4482b8");
		//~ $("#contact").find("a").addClass("fff");
	//~ }
	//~ $(".menu li").click(function(){
		//~ $(".menu li").css("background-color","#EDEEEF");
		//~ $(".menu li").css("color","#666666");
		//~ $(".menu li").find("a").removeClass("fff");
		//~ $(this).css("background-color","#4482b8");
		//~ $(this).find("a").addClass("fff");
	//~ });
	
	var hr=$("#otherright").height();
	var hl=$("#otherleft").height();
	if(hl>hr)
	{
		$("#otherright").height(hl);
	}
	else
	{
		$("#otherleft").height(hr);
	}
	
	$(".companylist ul li").mouseover(function(){
	$(this).css("background-color","#fff");
	$(this).mouseout(function(){
		$(this).css("background-color","");
		});
	});
	
	$("dl dd").mouseover(function(){
	$(this).css("background-color","#fff");
	$(this).mouseout(function(){
		$(this).css("background-color","");
		});
	});
});

