		$(document).ready(function() {
					$(document).ready(function() {
				var interval;
				
				$('ul#caroussel')
					.roundabout({
						tilt: -1.5,
						minOpacity: 0.2
					})
					.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#caroussel').roundabout_animateToNextChild();
				}, 1000);
			}
		});

