$(document).ready(function(){
    


    var ce;
    var cw=20;
    //$('#mod_menue ul.mod_menue_ul > li').css('border','1px solid red');
    $('#mod_menue ul.mod_menue_ul > li').bind({
        mouseenter: function(){
            ce=$(this).find("> div");
            if(ce.attr('class')){
                $('.untermenu1').hide();
            }
            cw=20;
            ce.show();
            /*ce.find('li').each(function(i){
                cw=cw+$(this).width()+30;
            })*/
            //ce.width(cw);
        },
        mouseleave: function(){
            $(this).find("> div.untermenu1").hide();
        }
    })



    /*$('.untermenu1 ul > li,.untermenu2').bind({
       mouseenter: function(){
           $('.untermenu2',this).show();
           
       },
       mouseleave: function(){
           $('.untermenu2',this).hide();
           
       }
    });*/
})
