$(document).ready(function(){
    $('#mod_menue_ebene1 ul > li').bind({
        mouseenter:function(){
            $(this).find('.kk_drop').show();
        },
        mouseleave:function(){
            $(this).find('.kk_drop').hide();
        }
    })
})
