// Highlight selected menu item
// -------------------------------------------
bgColor   = "#e8e8e8";
fontColor = "#333333";
bBold     = false;
linkName  = "menu";
iEnd      = 30;
// -------------------------------------------
function getPage(s){
	 return s.substr(s.lastIndexOf("/")+1);
}
//
function setMenuItem(){
 pageName = getPage(location.href);
 iLength  = document.links.length;
 for(i=0;i<iLength;i++){
	   id = document.links[i];
		 if(id.name!=linkName) continue;
		 if(getPage(id.href) == pageName){
			 /*set style for item*/
			 id.style.backgroundColor     = bgColor;
			 id.style.color               = fontColor;
			 if(bBold)id.style.fontWeight = "bold";
			 return;
		 }
   }
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/*
imgSrc - source of the image
width  - border wodth
url    - link
color1 - main color
color2 - mouse over color
*/
//
function setButton()
{
str = '<img src="'+imgSrc+'" border="0"  title="'+title+'" style="border-bottom-width:'+width+'px; border-bottom-style:solid; border-bottom-color:'+color1+';" onMouseOver="style.borderBottomColor=color2" onMouseOut="style.borderBottomColor=color1">';
if(url!="") str = "<a href=\""+url+"\">"+str+"</a>";
document.write(str);
}
