//$(document).ready(function() {
//	$('#myRoundabout').roundabout({
//		   shape: 'figure8',
//		 minOpacity: 0.5,
//		  
//	});
//});

		$(document).ready(function() {
				var interval;
				
				$('#myRoundabout')
					.roundabout({shape:'figure8',easing: 'smooth',minOpacity: 0.5,duration: 2200})
					.hover(
						function() {
							
							clearInterval(interval);
						},
						function() {
							
							interval = startAutoPlay();
						}
					);
				
				interval = startAutoPlay();
			});
			
			function startAutoPlay() {
				return setInterval(function() {
					$('#myRoundabout').roundabout_animateToNextChild();
				}, 5000);
			}
