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