// NONE of this code runs on Firefox ot better browsers, this is an IE6 only file
// SEE - http://htmldog.com/articles/suckerfish/dropdowns/

sfHovers = function() {
  if (dropdown) {
    jQuery('li.category').bind("mouseenter", function(){
      jQuery(this).addClass('sfhover');
      jQuery(this).stopTime("hideMenu");
    }).bind("mouseleave", function(){
        //    jQuery(this).oneTime(100, "hideMenu", function() {
        removeExtras();
        //});
    });
  }
}

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

function removeExtras(){  
  jQuery("#nav-site li.sfhover").removeClass("sfhover");
}
