$(document).ready(function() {
	var interval;
	
	$('ul.gallery').roundabout({
		shape: 'waterWheel',
		minScale: 0.1,
		minOpacity: 1,
		maxScale: 0.7,
		duration:1500,
		focusBearing:1,
		debug:false,
		clickToFocus:true
	})
		.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.gallery').roundabout_animateToNextChild();
	}, 3000);
}

$(document).ready(function() {
	var interval;
	
	$('ul.gallery_lx').roundabout({
		shape: 'lazySusan',
		minScale: 0.1,
		minOpacity: 1,
		maxScale: 0.6,
		duration:1500,
		focusBearing:1,
		debug:false,
		clickToFocus:true
	})

});
