Maybe a little more encapsulation if you felt like it (I don't like how critical `var`s end up lingering outside linked sequences sometimes):
var show = { start : function() { carousel.next(); show.continuous(); }, continuous : function() { this.continuous = carousel.next.periodical(7000, carousel); } } show.start.delay(4000); Then in your event listeners: clearInterval( show.continuous ); -- Sandy -- --- You received this message because you are subscribed to the Google Groups "MooTools Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to mootools-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.