$(document).ready(function () {
    $('.header #menu div').hover(function () {
  $(this).children('ul.submenu').slideToggle('fast');
    });
});

