/* http://www.htmldog.com/articles/suckerfish/dropdowns
 * And that will sort out everything for those browsers that fully support the :hover
 * pseudo class, but for Internet Explorer we need to set the Suckerfish JavaScript
 * loose:
 * $Id: sfhover.js,v 1.4 2007/10/03 14:26:36 vollmer Exp $
 */
sfHover = function()
{
  var m = document.getElementById("menu");
  if (m) {
    var sfEls = m.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", sfHover);
/***************************************************************************************/