function menuOver()
{
	this.className = this.className.substring(0,6) + '_Over';
	//this.children[0].style.textDecoration = "none";
}

function menuOut()
{
	this.className = this.className.substring(0,6);
}

function menuClick()
{
	window.location.href=this.children[0].href;
}

function menuSetup()
{
	var objs = document.all;
	for (i = 0; i < objs.length; i++)
	{
		if (objs[i].xtmenu == '1') {
			objs[i].onmouseover = menuOver;
			objs[i].onmouseout = menuOut;
			objs[i].onclick = menuClick;
			objs[i].style.cursor = "hand";
		}
	}
}
