$(function() {
  $('.Navigation li').each(function() {
    var li = $(this);
    var a = li.find('a:first');
    a.hover(function() {
      li.addClass('Hovered');
    }, function() {
      li.removeClass('Hovered');
    });
  });
  
  $('.Navigation .DropDown').each(function() {
    var DropDown = $(this);
    var Parent = $(this).parent();
    Parent.mouseenter(function() {
      DropDown.show();
      Parent.addClass('Open');
    }).mouseleave(function() {
      DropDown.hide();
      Parent.removeClass('Open');
    });
  });
    
});
