// JavaScript Document
function doSlideShow(){
		
	$('#slide-gallery').cycle({
		fx: 'scrollRight',
		timeout: 5000,
		speed: 500,
		delay: -2000,
		pager: '#pager',
		next: '#next',
		prev: '#prev'
	});
	
	$('#slide-caption').cycle({
		fx: 'scrollRight',
		timeout: 5000,
		speed: 500,
		delay: -2000
	});

	$('#playControl').toggle(
		function() {
			$('#gallery').cycle('pause');
			$(this).text('Play');
		},
		function() {
			$('#gallery').cycle('resume');
			$(this).text('Pause');
	});
	
}
