jQuery(document).ready(function($) {
  $("#dropdownnav").hover( 
    function () {
      $("> .menu_body", this).fadeIn('fast');
    },
    function () {
      $("> .menu_body", this).fadeOut('fast');
    }
  ); 
});

