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