jQuery(document).ready(function($) {
								
  var dropdown = $(".dropdown", this)
  var menu = $(".toplevel", this)

  dropdown.hide();

  $([dropdown[0], menu[0]]).hover(
    function() {
      dropdown.show();
    }, function() {
      dropdown.hide();
    });
});
