$(document).ready(function() {
		$('#myRoundabout').roundabout({
			 shape: 'square',
        	 minScale: 0.8, // tiny!
        	 maxScale: 1, // tiny!
			 easing:'easeOutCirc',
			 clickToFocus:'true',
			 focusBearing:'0',
			 duration:800,
			 btnNext: '.next',
			 btnPrev: '.prev',
			 reflect:true
		});  	
		setInterval(slideshow,8000);
		function slideshow(){
			$('.next').click();
		}
});
