$(document).ready(function() {
	var interval;
	
	$('ul.gallery')
		.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();
	
	
    $("a[rel^='prettyPhoto']").prettyPhoto();

	$('#slides').slides({
				preload: true,
				preloadImage: 'img/loading.gif',
				play: 5000,
				pause: 2500,
				hoverPause: true
			});
	
});

function startAutoPlay() {
	return setInterval(function() {
		$('ul.gallery').roundabout_animateToPreviousChild();
	}, 3000);
}

