/****************************/
/* Suckerfish Dropdown Code */

function sf_hover() {

  // continue only if there is a Dropdown menu contained in the page
  if (document.getElementById("Dropdown")) {
  
    var sfEls = document.getElementById("Dropdown").getElementsByTagName("LI");
  
    for (var i = 0; i < sfEls.length; i++) {
  
      sfEls[i].onmouseover = function() {
        this.className += " SFhover";
      }
    
      sfEls[i].onmouseout = function() {
        this.className = this.className.replace(new RegExp(" SFhover\\b"), "");
      }
    
    }
  
  }
  
}


if (window.attachEvent) window.attachEvent("onload", sf_hover);