// <[CDATA[
$(document).ready(function() {

  var interval;

	$('ul#myRoundabout')
	  .show()
		.roundabout()
		.hover(
			function() {
				// oh no, it's the cops!
				clearInterval(interval);
			},
			function() {
				// false alarm: PARTY!
				interval = startAutoPlay();
			}
		);

	// let's get this party started
	interval = startAutoPlay();
});

function startAutoPlay() {
	return setInterval(function() {
		$('ul#myRoundabout').roundabout_animateToNextChild();
	}, 3000);
}
// ]]>
