$(document).ready(function(){
  $('#bestgames ul')
  	.roundabout({
    	duration: 400, btnNext: '#next', btnPrev: '#previous', reflect: true, clickToFocus: false
  	})
  	.hover(
  		function() {
  			// oh no, it's the cops!
  			clearInterval(interval);
  		},
  		function() {
  			// false alarm: PARTY!
  			interval = startAutoPlay();
  		}
  		);	
  		// let's get this party started
  		interval = startAutoPlay();
  		$('#bestgames ul').children().css('float', 'none');
	});

function startAutoPlay() {
	return setInterval(function() {
		$('#bestgames ul').roundabout_animateToNextChild();
	}, 3000);
}
