$(document).ready(function() {
	$('#indexSlideScreen').cycle({
	fx: 'scrollLeft',
	timeout: 11000,
	speed: 700,
	delay: -2000,
	pager: '#pager',
	next: '#next',
	prev: '#prev'
	}); // end of slideshow
$('#playcontrol').toggle(
   function() {
   $('#indexSlideScreen').cycle('pause');
   $(this).text('Play');
   },
      function() {
   $('#indexSlideScreen').cycle('resume');
   $(this).text('Pause');
   }); // end of controls
}); //end ready
