// JavaScript Document
var ie4=navigator.userAgent.indexOf("MSIE")
function SwapBG(obj) {
	obj.className="menuChoicesMO"
//	obj.style.backgroundColor="#739CDE";
	if(ie4){
		obj.style.cursor="hand"
	}
	return true;
}
function SwapBGRestore(obj) {
	obj.className="menuChoices"
//	obj.style.backgroundColor="#3165CE";
	return true;
}