﻿/// <reference path="jquery-1.7.1.min.js" />

$(function () {
    $('#nav li').mousemove(function () {
        $(this).find('ul').slideDown(); //you can give it a speed
    });
    $('#nav li').mouseleave(function () {
        $(this).find('ul').slideUp("fast");
    });
});

