﻿$(function () {


    $('#menu_items a').hover(function () {
        var thisclass = $(this).attr("class");
        thisclass = thisclass.replace("_a", "");
        var item = $('.submenu ul.sub' + thisclass);
        item.stop(true, true);
        item.slideDown(300);
    }, function () {
        var thisclass = $(this).attr("class");
        thisclass = thisclass.replace("_a", "");
        var item = $('.submenu ul.sub' + thisclass);

        item.stop(true, true);
        item.queue(function () {
            setTimeout(function () {
                item.dequeue();
            }, 100);
        });
        item.slideUp(300);
    });

    $('.submenu ul').hover(function () {
        var thisclass = $(this).attr("class")
        $('.menu ul li.' + thisclass + ">a").css("background-color", "#96BF0D");

        $(this).stop(true, true);
        $(this).show();
    }, function () {
        var thisclass = $(this).attr("class")
        $('.menu ul li.' + thisclass + ">a").css("background-color", "");

        $('.submenu ul').eq($(this).index()).stop(true, true);
        $('.submenu ul').eq($(this).index()).slideUp(300);
    });

});
