    //DOM vollständig geladen
    $(document).ready(function() {
      $('ul').removeClass('jMenueBGNoJs .jMenueNoJs');
      // Jeder Link der Klasse .jMenue ausser .active und .jMenueBG a
      $(".jMenue a").not(".active, .jMenueBG a").each(function(){
        // Link an mehrere Events binden
        $(this).bind({
          mouseenter: function(){
            $(this).stop().animate({ color: '#f0f' }, 'fast');	
          },
          mouseleave: function(){
            $(this).stop(false,true).animate({ color: '#fff' }, 'slow');
          },
          focusin: function(){      
            $(this).stop().animate({ color: '#fff' }, 'fast');
          },
          focusout: function(){
            $(this).stop(false,true).animate({ color: '#fff' }, 'fast');
          }
        })  
      });
	 });

    $(document).ready(function() {
      $('ul').removeClass('mailBGNoJs .mailNoJs');
      // Jeder Link der Klasse .jMenue ausser .active und .jMenueBG a
      $(".mail a").not(".active, .mailBG a").each(function(){
        // Link an mehrere Events binden
        $(this).bind({
          mouseenter: function(){
            $(this).stop().animate({ color: '#f00' }, 'fast');	
          },
          mouseleave: function(){
            $(this).stop(false,true).animate({ color: '#fff' }, 'slow');
          },
          focusin: function(){      
            $(this).stop().animate({ color: '#fff' }, 'fast');
          },
          focusout: function(){
            $(this).stop(false,true).animate({ color: '#fff' }, 'fast');
          }
        })  
      });
	 });
