$(function() {

    $(document).ready(function() {
        $(".subitems").append("<div class=\"bottombg\"></div>");
    });

    $(".menu .menuitem").mouseenter(function() {
        if($(this).find(".subitems").length > 0)
            $(this).find(".background").fadeIn(200); //.addClass("hover");

    }).mouseleave(function() {
        if ($(this).find(".subitems").length > 0)
            $(this).find(".background").fadeOut(200); //.removeClass("hover");
    });

});
