var horizontal;
var vertical;

window.addEvent('domready',function(){
	
	horizontal = new Fx.Scroll.Carousel('horizontal',{
		mode: 'horizontal',
		onComplete: function(){
			//horizontal.toNext();
		}
	});
	

	function defilement(){ 
	  horizontal.toNext()
	  setTimeout(defilement, 1800)	;
  	
	}

	setTimeout(defilement, 1000);

});
