$(document).ready(function() {
	  	$('.slideshow')
		.cycle({
			fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			autostop: true,
			autostopCount: 11,
			prev: '#slide_prev',
			next: '#slide_next'
		});
		$('#slideshow_nav').each(function() { $(this).click(function() { $('.slideshow').cycle('pause'); }); })
});
