
var t;
function scrollGame(direction) {
    changeGame(direction);
    if (direction=="right")
        t=setTimeout("scrollGame('right')",800);
    else
        t=setTimeout("scrollGame('left')",800);
}

function stopScrollGame() {
    clearTimeout(t);
}

function changeGame(direction) {

var gamesNum =5;

var gameImage = document.getElementById("bonus");
var imageName =gameImage.src;
var index = imageName.substring(imageName.indexOf("con_img")+7,imageName.indexOf("con_img")+8);


    if (direction=="right") {
        if (gamesNum-index==0) index=1;
        else index = (index-0)+1;
    }
    else if  (direction=="left") {
        if (index-1==0) index=gamesNum;
         else index = index-1;
    }
     gameImage.src=sImgPath+"/new888/lang/sv_new/offers/con_img"+index+".gif";
}