var lastObj;
function MenRollOver(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = '#FFFF00';	obj.style.color = 'black'; obj.style.cursor = 'hand'; }
}
function MenRollOut(obj) {
	if (obj != lastObj) { obj.style.backgroundColor = ''; obj.style.color = ''; }
}

