﻿$(document).ready(function() {

    $("div#nav ul li").hover(function() { //Hover over event on list item
        $(this).find("ul").show(); //Show the subnav
    } , function() { //on hover out...
        $(this).find("ul").hide(); //Hide the subnav
    });

});
