<!--//--><![CDATA[//><!--
  startList = function() {

var ie5browser = 0;
var isMac = 0;

if(document.images)
{
	ie5browser = (document.all && document.getElementById);
}

if(navigator.userAgent.indexOf("Mac") != -1){
    isMac = 1;
}

if(isMac && ie5browser)
{
	return true;
}


  	if (document.all&&document.getElementById) {
  		navRoot = document.getElementById("menu");
  		for (i=0; i<navRoot.childNodes.length; i++) {
  			node = navRoot.childNodes[i];
  			if (node.nodeName=="LI") {
  				node.onmouseover=function() {
  					this.className+=" over";
  				}
  				node.onmouseout=function() {
  					this.className=this.className.replace(" over", "");
  				}
  			}
  		}
  	}
  }
window.onload=startList;

//--><!]]>