function focusMail(elmt){
	if(elmt.value == "votre email"){
		elmt.value = "";
	}
	}
	function blurMail(elmt){
	if(elmt.value == ""){
		elmt.value = "votre email";
	}
}
	
	window.addEvent('domready',function() {
	/* settings */
	var list = $('formationMois').getFirst('ul');
	var items = list.getElements('li');
	var showDuration = 3000;
	var scrollDuration = 500;
	var index = 0;
	var height = items[0].getSize().y;
	/* action func */
	var move = function() {
		list.set('tween',{
			duration: scrollDuration,
			onComplete: function() {
				if(index == items.length - 1) {
					index = 0 - 1;
					list.scrollTo(0,0);
				}
			}
		}).tween('top',0 - (++index * height));
	};
	/* go! */
	window.addEvent('load',function() {		
		move.periodical(showDuration);
	});
});	
