var normalColor = '#9a0000';
var highlightedColor = '#000000';
var currentPageColor = highlightedColor;

function miMouseOver(item) {
//	if(location.href != item.firstChild.href) {
		item.style.background=highlightedColor;
/*	} else {
		item.style.background=currentPageColor;
	}*/
}

function miMouseOut(item) {
//	if(location.href != item.firstChild.href) {
		item.style.background=normalColor;
/*	} else {
		item.style.background=currentPageColor;
	}*/
}
function miClick(item) {
	location = item.firstChild.href;
}
function pageLoad() {
/*	for(var i = 0; i < menutable.firstChild.childNodes.length; i++) {
		//alert(menutable.firstChild.childNodes[i].firstChild.firstChild.href);
		if(menutable.firstChild.childNodes[i].firstChild.firstChild.href == location.href) {
			menutable.firstChild.childNodes[i].firstChild.style.background=currentPageColor;
		} else {
			menutable.firstChild.childNodes[i].firstChild.style.background=normalColor;
		}
	}*/
}