 var $j = jQuery.noConflict();
     
     // Use jQuery via $j(...)
     $j(document).ready(function(){
           
        $j('#banner').innerfade({
          speed: 'slow',
          timeout: 4000,
          type: 'random',
          containerheight: '217px'
          });

      //manipulate Startseite
      $j("div.startseite:first").children("div:first").addClass("intro");
      //manipulate weblinks
      $j("div.weblinks").next("ul").addClass("links");
      $j("form fieldset").next("p").addClass("register");
      
      //Manipulate Suche
      $j(".search input.button").attr({  
          src: "/update/images/M_images/lupe.jpg"}); 
      
      //manipulate Dokumente      
    $j(".dokumente li").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
    $j(".dokumente li:even").addClass("alt");
  //show excel icon
    $j("a[href$='.xls']").val(".xls")
      .addClass("excel-icon");
   //show pdf icon 
    $j("a[href$='.pdf']").val(".pdf")
      .addClass("pdf-icon");
    $j("a[href$='.doc']").val(".doc")
      .addClass("word-icon");
      //manipulate AnmeldeForm
      $j("form.form-login p").remove();
         //Manipulate Editor
      $j("#created_by_alias").prev("label").css("display", "none");
      $j("#created_by_alias").css("display", "none"); 
      //manipulate TeamSeite
      $j(".team .leading").each(function(){
         $j(this).children("p").children("img").addClass("teamfoto");
         });
      var Fensterbreite = $j(window).width();
      if(Fensterbreite <= 1200){
         $j("#anker").remove();
         $j("body").css("background-image","none");
      }
      
     });
  
