var timer;
var speed = 2;

function move_index(valu) 
{
    //alert(valu);
    //divImages
    //tdScroller
    obj = document.getElementById("divImages");
    obj.scrollLeft = obj.scrollLeft + (speed*valu);	  
}

function xx(valu)
{
    timer = setTimeout('xx('+valu+')',1);
    move_index(valu);
}

function stopper()
{
    clearTimeout(timer);
}
