var browser = navigator.userAgent;
/*
if(browser.indexOf("MSIE") > -1 && browser.indexOf("Opera") == -1) {

	window.onload = function() {

		var	menu = document.getElementById("menu");
		for (i=0; i < menu.childNodes.length; i++) {
			var node = menu.childNodes[i];
			if (node.nodeName == "LI") {
        
				node.onmouseover = function() {
					this.className += " over";
				}

				node.onmouseout = function() {
					this.className = this.className.replace(" over", "");
				}
			}
		}

	}
}
*/
function onmouseover_menu(id)
{
  if(browser.indexOf("MSIE") > -1 && browser.indexOf("Opera") == -1) {
    var	obj = document.getElementById(id);
    obj.className += " over";
//    alert(obj.className);
  }
}

function onmouseout_menu(id)
{
  if(browser.indexOf("MSIE") > -1 && browser.indexOf("Opera") == -1) {
    var	obj = document.getElementById(id);
    obj.className = obj.className.replace(" over", "");
//    alert(obj.className);
  }
}

