$(document).ready(function() {
  
  $('div#menu ul li').each(function() {
    
    $(this).click(function() {
      document.location.href = $(this).find('a:first').attr('href');
    });
    
    $(this).hover(
      function() {
        $(this).addClass('hover')
      },
      function() {
        $(this).removeClass('hover')
      }
    )
  })
  
});
