﻿$(document).ready(function() {
   $(".navigation ul li").hover(
  function () {
    $(this).find("ul:first").show();
  }, 
  function () {
    $(this).find("ul:first").hide();
  }
);
 });
