﻿$(function(){
  $("#nav > li:not(:eq(2))").hover(function () {
    $(this).children("ul").show();
  }, function () {
    $(this).children("ul").hide();
  });
});

