// CYCLE 

$(document).ready(function() {
	$('.slideshow').cycle({
		fx: 'fade',
		timeout: 9000,
		pause:  1,
	    next:   '#slideNext', 
	    prev:   '#slidePrev' 
	});
});

