$(function(){

   //Display the submenu
   $('#menu li').mouseover(function(){
      $('#menu li div').hide();
      var children = $('div', this);
      if (children.length > 0){
        children.show();
      }
   });

   //Create tooltips
   $.tooltip();
});
