/**
 * @author Stéphane Roucheray 
 * @extends jquery
 */

jQuery(document).ready(function(){
				jQuery('#slider-stage').carousel('#previous', '#next');
				jQuery('#viewport').carousel('#simplePrevious', '#simpleNext');  
			});
			
			//The auto-scrolling function
			function slide(){
					j('#simpleNext').click();
			}
			//Launch the scroll every 2 seconds
			var intervalId = window.setInterval(slide, 5000);			
			//On user click deactivate auto-scrolling
			j('#previous, #simpleNext').click(
				function(event){
					if(event.originalEvent){
						window.clearInterval(intervalId);
					}
				}
			);

