
var obj0,obj1,obj2,j,k,temp;

var i=0;
var speed=15;

function imgScroll() {

    obj0.style.left=i+'px';
    obj1.style.left=j+'px';

    i--;
    j--;

    if(i<-temp) {
        i=k;
    }
    if(j<-k) {
        j=temp;
    }
    scroller=setTimeout('imgScroll()',speed);
}

window.onload=function() {
    obj0=document.getElementById('ticker0');
    obj1=document.getElementById('ticker1');
    obj2=document.getElementById('container');

    j=obj0.offsetWidth;
    k=obj1.offsetWidth;

    temp=j;

    obj1.className='';
    obj2.className='setup'

    obj0.style.width=j+'px';
    obj1.style.width=k+'px';

    imgScroll();

    obj2.onmouseover=function(){
        clearTimeout(scroller);
    }
    obj2.onmouseout=function(){
        imgScroll();
    }
}
