// Gareths Website Gallery and Showreel manipulator

$(document).ready(function() {
				var interval;
				
				$('ul.roundabout')
					.roundabout({ 
							tilt:-2, 
							minOpacity:0.0, 
							maxOpacity:2.0,  
							duration:2000
					})
					.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.roundabout').roundabout_animateToNextChild();
				}, 4000);
			}



