// JavaScript Document
//automatically highlight thispages menu item
function mh(col) {
	fname=location.pathname.substring(location.pathname.lastIndexOf("\/")+1);
	navs = document.getElementById("Nav").getElementsByTagName("a");
	for (i=0;i<navs.length;i++)
	{
		x = navs[i].getAttribute("href");
		xx = x.substring(x.lastIndexOf("\/")+1);
		if(xx==fname){
			navs[i].style.backgroundColor=col;
//			navs[i].style.color="#f78f1d";
			navs[i].style.color="#ff9933";
			
	//		navs[i].style.backgroundImage="url(images/nav_bg_flipped.gif)";
			break;
		}
	}
}