$.noConflict();
// $(document).ready(function($)
jQuery(document).ready(function($) {

    $('#catalogueflag').hover(function() {
        $('img', this).animate({
            marginTop: '-=8'
        },
        {
            queue: false,
            duration: 200
        });
    },
    function() {
        $('img', this).animate({
            marginTop: '+=8'
        },
        {
            queue: false,
            duration: 200
        });
    });
 	
 	 	    
 	 	    $('a.lightwindow').removeAttr('title');
 	 	    // Lightbox Überschrift entfernen
 	    $('a.lightwindow').attr('rel', 'shadowbox');
 	     // Lightbox-Link verknüpfen
 	     $('ul.linkliste').attr('style', 'display:none');
 	    // Beim Laden der Seite die linke Navi runterscrollen lassen:
 	   $('ul.linkliste').slideDown(1500);
 	  	    // in 1500 Millisekunden
 	  	    $("a[href$='pdf']").addClass("pdf");
 	  //  Jedem PDF ein Symbol voranstellen
  	    // Bilderwechsel für die Startseite ... und nur da ;)
  	    if ($('#mood').length > 0) {
  	        $('#mood').attr('style', 'background:none;');
  	        $('#mood').append('<img src="fileadmin/contentpics/header/001.jpg" width="600" height="288" alt="" class="slide1" id="img1"/>');
  	        $('#mood').append('<img src="fileadmin/contentpics/header/002.jpg" width="600" height="288" alt="" class="slide2 mood" />');
  	        $('#mood').append('<img src="fileadmin/contentpics/header/003.jpg" width="600" height="288" alt="" class="slide3 mood" />');
  	        $('#mood').append('<img src="fileadmin/contentpics/header/004.jpg" width="600" height="288" alt="" class="slide4 mood" />');
  	        $('#mood').cycle({
  	            delay: 1000,
  	            speed: 3000
  	        });
  	    }
  	
 
});
