
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/de_new/offers/con_img"+index+".gif";
}


function ChangeIMG(IMG,name)
{

    var index = name.indexOf("_o.gif");
    var sPicName="";
    if (index!=-1)
    {
        sPicName= name.substr(0,index);

   sPicName = sPicName + ".gif"
   }
   else
   {
        index = name.indexOf(".gif");
        sPicName= name.substr(0,index);
        sPicName = sPicName + "_o.gif";
   }


    IMG.src = sPicName;

}