$(document).ready( function() {

  /* Slideshow Options:
  *
  *  transition: 'fade'     fade or kenBurns
  *  startImage: 0          index of the Image to start with
  *  pause: 5000            pause between fade in ms
  *  fadeTime: 2000         fade time in ms
  *  zoom: 1.4              zoom only for transition kenBurns
  *  reflection: true       works only with transition fade
  *  refHeight: 20          the height of the reflection in %
  *  
  *  Features:  
  *  prev & next, pause, play Controls possible
  *  get active image, get next image, get prev image, get state (play / pause)    
  *  (talk to Markus o. ;) )     
  *   
  *  ToDo:   
  *  integration of nivoSlider
  *  pagination  
  *        
  */        
  
  $( document ).ready( function() {

    $('#slideshow').slideshow({ reflection: false });

  });

});
