// JavaScript Document

$(document).ready( function() {
							
    $('.slideshow').cycle({
		fx: 'fade' ,// choose your transition type, ex: fade, scrollUp, shuffle, etc... 
		delay:-1500, //additional delay (in ms) for first transition (hint: can be negative)
    	speed:  1750, //speed of the transition
    	timeout:  5000 //milliseconds between slide transitions (0 to disable auto advance)
	});	

})
