// JavaScript Document
var thespeed=3; 
var myspeed=0;  

function scrollwindow(){
	src1.scrollBy(myspeed,0);
}

function initializeIT(){
	if (myspeed!=0){
		scrollwindow();
	}
}

if (document.all||document.getElementById)
	setInterval("initializeIT()",20);

