var ActualTimerleft=setTimeout("RollImageleft();",ROLTimesleft[ActualIMGleft-1]*1000);
var ActualTimerright=setTimeout("RollImageright();",ROLTimesright[ActualIMGright-1]*1000);

function RollImageleft()
{
	ActualIMGleft++;
	if(ActualIMGleft>ROLImagesleft.length)
	{
		ActualIMGleft=1;	
	}
	if(document["titulleft"])
	{
		document["titulleft"].src="getimage.php?show=images/titul/"+ROLImagesleft[ActualIMGleft-1]+"/1.png&stamp=3dd15efe9dhu47531dba9e34712fd";
		ActualTimerleft=setTimeout("RollImageleft();",ROLTimesleft[ActualIMGleft-1]*1000);
	}	
}

function RollImageright()
{
	ActualIMGright++;
	if(ActualIMGright>ROLImagesright.length)
	{
		ActualIMGright=1;	
	}
	if(document["titulright"])
	{
		document["titulright"].src="getimage.php?show=images/titul/"+ROLImagesright[ActualIMGright-1]+"/1.png&stamp=3dd15efe9dhu47531dba9e34712fd";
		ActualTimerright=setTimeout("RollImageright();",ROLTimesright[ActualIMGright-1]*1000);
	}	
}

