$(function() {
  $('.photo-of-the-day .bc').cycle({
      prev:   '#prevIm',
      next:   '#nextIm',
      speed:  500,
      timeout: 5000,
      fx: 'scrollBothWays'
  });

  $('#pauseIm').click(function(){
	  
	  if($(this).hasClass('selected'))
	  {
	    $(this).removeClass('selected');
	    $('.photo-of-the-day .bc').cycle('resume');
	  }
	  else
	  {
	    $(this).addClass('selected');
	    $('.photo-of-the-day .bc').cycle('pause');  
	  }
	  
  });
      
});
