$(document).ready(function() {
	
	// top example
	$('.roundabout-example ul').roundabout({
		'easing': 'easeOutExpo',
		'duration': 1000,
		'minOpacity':1.0,
		'reflect': true,
       	'startingChild': 0,
		'btnNext': '.next',
		'btnPrev': '.previous'
	});
	
	//Automaticamente pasar al siguiente elemento cada 3 segundos
	var interval;
	
	$('.roundabout-example ul').hover(
				   function() {
								   clearInterval(interval);
				   },

				   function() {
								   interval = startAutoPlay();
				   }
	);
												   
	interval = startAutoPlay();
	
	$(window).resize(function() {
		$('.roundabout-example ul').roundabout_animateToBearing($.roundabout_getBearing($('.roundabout-example ul')));
	})
});

function startAutoPlay() {
                return setInterval(function() {
                               $('.roundabout-example ul').roundabout_animateToNextChild();
                               }, 3000);
}


