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