mysite_links.js

/* $Id: mysite_links.js,v 1.1.2.1 2008/02/08 01:04:10 agentken Exp $ */

/**
 * Modified from Suckerfish Dropdowns, www.htmldog.com
 * Suckerfish by Patrick Griffiths and Dan Webb.
 */
mysiteHover = function() {
  var linksReady = '';
  var sfEls = '';
  linksReady = document.getElementById("mysite-links");
  if (linksReady) {
    sfEld = document.getElementById("mysite-links").getElementsByTagNam
e("LI");
    if (sfEls) {
      for (var i=0; i
<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
          this.className+=" mysite-hover";
        }
        sfEls[i].onmouseout=function() {
          this.className=this.className.replace(new RegExp(" mysite-hover\\b"), "");
        }
      }
    }
  }
}
if (window.attachEvent) window.attachEvent("onload", mysiteHover);