$(document).ready(function(){ 

// Slideshow
	$('#slideshow').cycle({
	    fx:           'fade', // one of: fade, shuffle, zoom, slideX, slideY, scrollUp/Down/Left/Right 
	    timeout:       3000,  // milliseconds between slide transitions (0 to disable auto advance) 
	    speed:         2000,  // speed of the transition (any valid fx speed value) 
	    speedIn:       null,  // speed of the 'in' transition 
	    speedOut:      null,  // speed of the 'out' transition
	    startingSlide: 0,     // zero-based index of the first slide to be displayed 
	    sync:          1,     // true if in/out transitions should occur simultaneously 
	    random:        0,     // true for random, false for sequence (not applicable to shuffle fx) 
	    fit:           0,     // force slides to fit container 
	    pause:         1,     // true to enable "pause on hover" 
	    autostop:      4,     // true to end slideshow after X transitions (where X == slide count) 
	    delay:         0,     // additional delay (in ms) for first transition (hint: can be negative)
  	    next:          '#slideshow' // clicking the element advances to the next image (takes '#id')
	});

}); /* //$(document).ready */

