$(document).ready(function() {
  // main_menu drop down navigation
  var IE6 = false /*@cc_on || @_jscript_version > 5.5 @*/;
  if (IE6 === false) {
    var d = $('#doc2 #bd #main_menu .dropdown');
    d.mouseout(function() {
      $(this).children('a:first').removeClass('hovering');
      $(this).children('ul').css('display', 'none');
    });
    d.mouseover(function() {
      $(this).children('a:first').addClass('hovering');
      $(this).children('ul').css('display', 'block').mouseout(function(){
        $(this).css('display', 'none');
      });
    });
  }
});
