$(function() {
  $('li.first').hover(
      function() { $('div#dropdown', this).show();}, 
      function() { $('div#dropdown', this).hide();});
});
