﻿//<reference path="~/Scripts/jQuery/jquery-1.3.2.js"/>

$(document).ready(function() {
    $(".menuItem").hover(function() {
        $(this).children(".menuDropDown").stop(true, true);
        $(this).children(".menuTitle").addClass("menuTitleHover");
        $(this).children(".menuDropDown").slideDown(175);
    }, function() {
        $(this).children(".menuDropDown").slideUp(50);
        $(this).children(".menuTitle").removeClass("menuTitleHover");
    });
});

