﻿$(function() {

    $(".menu:not(.noeffect) .menuitem").mouseenter(function() {
        $(this).find(".subitems").fadeIn(200);
    }).mouseleave(function() {
        $(this).find(".subitems").fadeOut(200);
    });

    $(".menu:not(.noeffect) .menuitem .subitems a").mouseenter(function() {
        $(this).parent().addClass("hover");
    }).mouseleave(function() {
        $(this).parent().removeClass("hover");
    });

});
