 var images=$("dht1").getElementsByTagName("img");
 var url=location.href;
 url=url.substr(url.lastIndexOf("/")+1,url.length);
 url=url.capitalize();
 var j=0;
 for(var i=0;i<images.length;i++) 
 {
 	if(images[i].src.indexOf("dh_img.jpg")==-1)
	{
		images[i].onmouseover=function(i)
		{
			var src=this.src;
			src=src.substr(src.lastIndexOf("/")+1,src.length);
			var s_tring=src.split(".");
			this.src="Images/"+s_tring[0]+"s."+s_tring[1];
		}
		images[i].onmouseout=function(i)
		{
			var src=this.src;
			src=src.substr(src.lastIndexOf("/")+1,src.length);
			this.src="Images/"+src.replace('s.','.');
		}
	}
 }
 
 if(url.indexOf("Index")>-1)
 {
 	images[0].src="images/menu_1s.jpg";
	images[0].onmouseover=function(){};
	images[0].onmouseout=function(){};
 }
 
 if(url.indexOf("Products")>-1 || url.indexOf("Prodview")>-1)
 {
 	images[2].src="images/menu_2s.jpg";
	images[2].onmouseover=function(){};
	images[2].onmouseout=function(){};
 }
 
 if(url.indexOf("Order")>-1)
 {
 	images[4].src="images/menu_3s.jpg";
	images[4].onmouseover=function(){};
	images[4].onmouseout=function(){};
 }

 if(url.indexOf("Services")>-1 ||url.indexOf("Customization")>-1 ||url.indexOf("Complaints")>-1)
 {
 	images[6].src="images/menu_4s.jpg";
	images[6].onmouseover=function(){};
	images[6].onmouseout=function(){};
 }

if(url.indexOf("Questy")>-1)
 {
 	images[8].src="images/menu_5s.jpg";
	images[8].onmouseover=function(){};
	images[8].onmouseout=function(){};
 }

if(url.indexOf("Countus")>-1)
 {
 	images[10].src="images/menu_6s.jpg";
	images[10].onmouseover=function(){};
	images[10].onmouseout=function(){};
 }
