(function($)
{
    $.fn.Menue = function() {
         
        $('.teaser_head a').mouseenter(function()
        {
            $('.teaser_head a').removeClass('active');
            $('.untermenue').hide();
            
            $('#' + $(this).attr('class')).show(); 
            $('#' + $(this).attr('class')).css('display', 'block'); 
            $(this).addClass('active');
        }); 
        
        $('.teaser_head').mouseleave(function()
        {
            $('.teaser_head a').removeClass('active');
            $('.untermenue').hide();
        });   
    };
})(jQuery); 
