 $(document).ready(function() {
  
  if ($('P.csc-textpic-caption').length > 0) {
    
    var count = $('DIV.slideshow DIV.csc-textpic-image').length;
    
    $('P.csc-textpic-caption').each(function(index) {
      
      var parent = $(this).parent();
      var imgLink = parent.find('a').attr('href');
      $(this).append('<a href="' + imgLink + '" class="project">Projekt ansehen</a>');
      
      //$(this).append('<span class="textindex">Bild ' + (index+1) + ' von ' + count + '</span>');
      //$(this).append('<a href="javascript:void(0);" class="prev">prev</a>');
      //$(this).append('<a href="javascript:void(0);" class="next">next</a>');
      
    });
    
  }
  
  $('DIV.slideshow').hide();
  $('DIV.slideshow').fadeIn(1000, function() {
    $('DIV.slideshow').cycle({     
     fx:    'fade',
     random: 1,
     timeout: 5000,
     delay: -1000 
     //timeout: 0,
     //next: '.next',
     //prev: '.prev'
   });
  });
}); 
