
$(document).ready(function() {
	$('a').focus(function() {
  	this.blur();
	});
  
$('#previous, #next, #playControl').show();
$('#slideshow').cycle({
   timeout: 10000,
	 speed: 2000,
	 delay: -1000,
	 prev: '#previous',
	 next: '#next',
	 pager: '#pager' 
 }); // end cycle

 $('#playControl').toggle(
   function(){
	  $('#slideshow').cycle('pause');
		$(this).html('<a href="#">&nbsp;Play&nbsp;</a>');
	 },
	 function(){
	  $('#slideshow').cycle('resume');
		$(this).html('<a href="#">&nbsp;Stop&nbsp;</a>');
	 }); // end cycle play toggle

}); // end ready function

