// JavaScript Document
//******************************************************************************
//      Fonction pour le scrolling des actualit&eacute;s
//******************************************************************************

	var MyBox = null;

	function BoxInit() {
		step = 1;
		tempo1 = 15;
		tempo2 = 3500;
		spacer = 10;
		MyBox = new Box('MyBox', 'conteneur', step, tempo1, tempo2, spacer);
		window.setTimeout("MyBox.start()",3000);
	}


