$(document).ready(function() {
   $('.headerright ul li').mouseover(function() {
      $(this).children('ul:first').slideDown();
   });
});
