/* 
	Script : marquee.js
	
	Date : 19.04.2007
*/

/*
	Fonction : stopScrolling
	Paramètre(s) : id -> Nom de l'élément 
*/ 
function stopScrolling(id) {
	document.getElementById(id).stop();
}

/*
	Fonction : startScrolling
	Paramètre(s) : id -> Nom de l'élément 
*/ 
function startScrolling(id) {
	document.getElementById(id).start();
}
