﻿$jQuery(document).ready(function() {
    if ($jQuery("#RotatingSpotPause").length > 0) {
        $jQuery("#RotatingSpotResume").hide();
        $jQuery("#RotatingSpotPause").click(function() {
            $jQuery(this).hide();
            $jQuery('#RotatingSpotImages').cycle('pause');
            $jQuery("#RotatingSpotResume").show();
            return false;
        });
        $jQuery("#RotatingSpotResume").click(function() {
            $jQuery(this).hide();
            $jQuery('#RotatingSpotImages').cycle('resume');
            $jQuery("#RotatingSpotPause").show();
            return false;
        });
    }
});
