﻿$().ready(function () {

    $('li.hasDD').hover(function () {

        $(this).find('ul').show();

    }, function () {

        $(this).find('ul').fadeOut();

    });

});
