﻿ function placeNavigation()
 {
 var lsURL=window.location.href;
 loU = lsURL.split("=");

 if(loU.length > 1)
 {
	var sendText = loU[1];

	if(document.getElementById(sendText) != null)
	{
		document.getElementById(sendText).id = "hover"; 
		//document.all[sendText].color ="#000000";
	}
 }
}



 function placeNavigation_left()
 {
	var lsURL=window.location.href;
 	loU = lsURL.split("=");
	if(loU.length >2)
	{
		var sendText = loU[2];
		if(document.getElementById(sendText)!=null)
		{
			document.getElementById(sendText).id = "left_hover"; 
 			//document.all[sendText].color ="#d3402c"; 
		}
	}
}


 function placeNavigation_sub_left()
 {
	var lsURL=window.location.href;
 	loU = lsURL.split("=");
	if(loU.length >3)
	{
		var sendText = loU[3];
		//if(document.all[sendText]!=null)
		if(document.getElementById(sendText)!=null)
		{
			document.getElementById(sendText).id = "sub_left_hover"; 
 			//document.all[sendText].color ="#d3402c"; 
		}
	}
}

