var obj0;
var obj1;
var obj2;

var i=0;
var j=1109 /*this is the text width*/
var speed=40; /*this is the scroll speed*/

function imgScroll() {

obj0.left=i+'px';
obj1.left=j+'px';

i--;
j--;

if(i<-1109) {
i=1109;
}
if(j<-1109) {
j=1109;
}
scroller=setTimeout('imgScroll()',speed);
}

window.onload=function() {
obj0=document.getElementById('ticker0').style;
obj1=document.getElementById('ticker1').style;
obj2=document.getElementById('container');

imgScroll();

obj2.onmouseover=function(){
clearTimeout(scroller);
}
obj2.onmouseout=function(){
imgScroll();
}
}
