function setMenuLocation(obj, totalitems)
{
	var menuId;

	for(var i=1; i < totalitems; i++)
	{
		menuId = "menu_" + i;
		
		if(menuId != obj)
		{
			document.getElementById(menuId).setAttribute("class", "menuitem_off");
			document.getElementById(menuId).setAttribute("className", "menuitem_off");
		}
		else
		{
			document.getElementById(menuId).setAttribute("class", "menuitem_on");
			document.getElementById(menuId).setAttribute("className", "menuitem_on");
		}
	}
}