var slideshowStopped = false;

$(document).ready(function(){
	$('#slideShowContainer').cycle({
		fx: 'scrollHorz',
		timeout: 7000,
		speed: 300,
		prev: '#btnPrevious',
		next: '#btnNext',
		delay: -1
	});
});
			
function slideshowPausePlay(){
	if(slideshowStopped==true)
	{
		//start cycle
		$('#slideShowContainer').cycle('resume');
		slideshowStopped = false;
		$('#toggle').attr('src','rotatingBannerImages/btn_stop.gif');
	}
	else
	{
		//stop cycle
		$('#slideShowContainer').cycle('pause');
		slideshowStopped = true;
		$('#toggle').attr('src','rotatingBannerImages/btn_play.gif');
	}
}

