$(document).ready(function() {
    $('.slideshow').cycle({
		fx: 'fade', // fades between slides
		speed: 1000, // The speed option defines the number of milliseconds it will take to transition from one slide to the next.
		timeout:  5000, // The timeout option specifies how many milliseconds will elapse between the start of each transition.
		pause: 1, // causes transitions to pause when mouse hovers over slide
    	next:   '#next', 
    	prev:   '#prev' 
	});
});