﻿/// <reference path="jquery-1.4.1-vsdoc.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");
    });
});

