  $(document).ready(function() {  <!--  Slideshow script from "Javascript - The Missing Manual", Copyright 2008-->
  $('#gallery').cycle( {
	  fx: 'scrollRight',
	  timeout: 3000,
	  speed: 500,
	  delay: -2000,
	  pager: '#pager',
	  next: '#next',
	  prev: '#prev'
	});
 $	('#playControl').toggle(
   function() {
     $('#gallery').cycle('pause');
     $(this).text('Play');
   },
   function() {
     $('#gallery').cycle('resume');
     $(this).text('Pause');
   });				 
 }); // end ready()
