var obj0;
var obj1;
var obj2;
var obj11;

var i=0;

var j=696; /*this is the text width*/
var c=2088;
var speed=25; /*this is the scroll speed*/

function imgScroll() {

obj0.left=i+'px';
obj1.left=j+'px';
obj11.left=c+'px';

i--;
j--;
c--;

if(i<-696) {
i=696;
}
if(j<-696) {
j=696;
}
if(c<-696) {
c=1392;
}
scroller=setTimeout('imgScroll()',speed);
}

window.onload=function() {
obj0=document.getElementById('ticker0').style;
obj1=document.getElementById('ticker1').style;
obj11=document.getElementById('ticker2').style;
obj2=document.getElementById('container');

imgScroll();

obj2.onmouseover=function(){
clearTimeout(scroller);
}
obj2.onmouseout=function(){
imgScroll();
}
}