window.addEvent('domready', function() {
	
	variablez = new Array();

	for (var i=0; i < $$('.testimonial').length; i++) {
		variablez.push(-i*4);
	};
	
	var myTimer = slideit.periodical(4000); //Waits 5 seconds then executes myFunction.
	
	
});

var i=0;
function slideit(){
	top = variablez[i];
	var slide = new Fx.Morph('ticker_inside',{'unit':'em'});	
	slide.start({'top':top});
	if(i == $$('.testimonial').length-1){
		i=0;
	}else{
		i++;
	}
}




 

