startList = function() {
if (document.all&&document.getElementById) {
cssdropdownRoot = document.getElementById("cssdropdown");
for (x=0; x<cssdropdownRoot.childNodes.length; x++) {
node = cssdropdownRoot.childNodes[x];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}

if (window.attachEvent)
window.attachEvent("onload", startList)
else
window.onload=startList;


function addtofavorite()
{
  if(navigator.appName=="Netscape") {
    alert('To bookmark this site, click "Bookmarks | Add bookmark" or press "Ctrl+D".');
  }
  else if (parseInt(navigator.appVersion)>3) {
   window.external.AddFavorite('http://marshield.icmconsulting.com', 'MarShield');
  }
}
