// Links verschieben nach rechts

/*
jQuery(document).ready(function(){

  var $j = jQuery.noConflict();

  $j(function(){

      $j("#sidebar [id^=linkcat-] li a").hover(function(){
      	$j(this).stop().animate({
      		paddingLeft: "20px"
    	 }, 400);
      }, function() {
    	 $j(this).stop().animate({
    	 	paddingLeft: 0
    	 }, 400);
     });
});
});
       */

// Cycle-Plugin initialize the slideshow when the DOM is ready 

jQuery(document).ready(function(){
var $j = jQuery.noConflict();
    $j('.rotator').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
            random: 1
	});

 //   Test: Cycling through the Conten-Div -- looks nice
 //   $j('#content').cycle({
 //		fx: 'scrollRight', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
 //            delay: -1000
 //	});

});

