Опечатка в последнем назначении события:
jQuery(".paging a").click(function() {
jQueryactive = jQuery(this); //Activate the clicked paging
//Reset Timer
clearInterval(play); //Stop the rotation
rotate(); //Trigger rotation immediately
rotateSwitch(); // Resume rotation
return false; //Prevent browser jump to link anchor
});
jQueryactive
должно быть $active
, поэтому функция должна быть:
jQuery(".paging a").click(function() {
$active = jQuery(this); //Activate the clicked paging
//Reset Timer
clearInterval(play); //Stop the rotation
rotate(); //Trigger rotation immediately
rotateSwitch(); // Resume rotation
return false; //Prevent browser jump to link anchor
});