$(document).ready(function(){
   $('div#header ul#primaryNavigation li').hover(
      function () {
         $('ul', this).show();
      },
      function () {
         $('ul', this).hide();
      }
   );
});