﻿$jQuery(document).ready(function () {
    if ($jQuery("#RotatingSpotPause").length > 0) {
        $jQuery("#RotatingSpotResume").hide();
        $jQuery("#RotatingSpotPause").click(pauseSpots);
        $jQuery("#RotatingSpotResume").click(resumeSpots);
    }
});

function resumeSpots() {
  $jQuery(this).hide();
  $jQuery('#RotatingSpotImages').cycle('resume');
  $jQuery("#RotatingSpotPause").show();
  return false;
}

function pauseSpots() {
  $jQuery(this).hide();
  $jQuery('#RotatingSpotImages').cycle('pause');
  $jQuery("#RotatingSpotResume").show();
  return false;
}

function startRotatingSpot() {
  $jQuery('#RotatingSpotImages').cycle({startingSlide: startingSlideIndex, fx: 'fade', speed: 'fast', pager: '#RotatingSpotPager', timeout: secondsBetweenRotation});
  $jQuery('#RotatingSpotPager a').click(spotPagerClicked);
}

function spotPagerClicked() {
  $jQuery('#RotatingSpotPause').hide();
  $jQuery('#RotatingSpotResume').show();
  $jQuery('#RotatingSpotImages').cycle('pause'); 
  return false;
}
