////////////////////////////////////////////////////////////////////////////////
// v5.2.2008 22:17:30
////////////////////////////////////////////////////////////////////////////////





////////////////////////////////////////////////////////////////////////////////
// DROPDOWN - START

xsDropDown = function()
{

  var rows = document.getElementById('menu').getElementsByTagName('li');

  for (var i = 0; i < rows.length; i++) {

    rows[i].onmouseover = function() {

      this.className +=' dropdown';

    }

    rows[i].onmouseout=function() {

      this.className = this.className.replace(new RegExp(" dropdown\\b"), '');

    }

  }

}

if (window.attachEvent) window.attachEvent('onload', xsDropDown);

// DROPDOWN - END
////////////////////////////////////////////////////////////////////////////////
