I have three rotators on the front page and I'd like them to start 1 second after each other.
$(document).ready(function(){
$('#rot_top').cycle({
speed: 500,
timeout: 2000
});
$('#rot_mid').cycle({
speed: 500,
timeout: 2000
});
$('#rot_btm').cycle({
speed: 500,
timeout: 2000
});
});
after the initial start - they should proceed according to their regular timeout.
Thank you so much for your help in advance.