$(function(){
	$('.round ul').roundabout({
			'easing': 'easeOutExpo',
			'duration': 600,
			'clickToFocus': true,
			'btnNext': '.rightArrow',
        	'btnPrev': '.leftArrow',
			'minOpacity': 0.3,
			'minScale': 0.6,
			'maxScale': 1
		}).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() {
	$('.round ul').roundabout_animateToNextChild();
	}, 3000);
}
