var sRepeat=null;
function doScrollerIE(dir, src) {	
// Velocità di movimento
amount=70;
// Direzione scorrimento
if (dir=="left") {
	if (document.all){document.all[src].scrollLeft-=amount;}
	else if (document.getElementById){document.getElementById(src).scrollLeft-=amount;}
					}	
else {if (document.all){document.all[src].scrollLeft+=amount;}
	else if (document.getElementById){document.getElementById(src).scrollLeft+=amount;}
		}	

if (sRepeat==null) {
	sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100);}
	return false}
	
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");