﻿/// <reference path="~/js/jquery-vsdoc.js" />

$(document).ready(function() {
    $('ul.menu-top > li.inactive').hover(function() {
        $('ul', this).slideDown('slow');
    },
    function() {
        $('ul', this).stop(true, true).slideUp('fast');
    });
});