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

    $("#nav li").hover(
        function () {
        $(this).children("ul").css({zIndex:90}).fadeIn(250);
        },function(){
        $(this).children("ul").fadeOut(250);
    });//hover

});// document ready

