:?: This works only for the videos on the "recent" page and not the stuff on the front page, correct? For it to work on the thumbs on the front page, we'd basically have to insert the same stuff into index.tpl that we did for video.tpl? I have something that works right now on the front page but I'll give Rammsteins's code a shot to see if it also works on index.tpl

May I post this mod to my skins site as a freebie (giving you full credit of course)?

For anyone having a problem accessing the .js at RAMMSTEIN's pornographic based URL due to work browser filters and the like, here's the code in txt format:

Code:
var thumbs=new Array();
var stat=new Array();
var thumb=new Array();

function rotatethumb(i,str)
{ var loop=0;

	if (stat[str])
	{
		while ((thumbs[str][i]==0 || i>=3) && loop<100)
		{ if (i>=10) { i=0; }
			else
			{ i++;
			}
			loop++;
		}

		if (thumb[str][i].complete)
		{	document.getElementById(str).src=thumb[str][i].src;
			setTimeout("rotatethumb("+(i+1)+",'"+str+"')",500);
		}
		else
		{	setTimeout("rotatethumb("+i+",'"+str+"')",20);
		}
	}


}

function loadthumb(url,str,j)
{	if (stat[str]) { thumb[str][j].src=url; }
}

function startr(str,ta,te)
{	stat[str]=1;
	var num;
	var first=1;

	for(var j=0;j<3;j++)
	{ if (thumbs[str][j]==1)
		{ thumb[str][j]=new Image();
			num=j+1;
			if (first) { first=0; loadthumb(ta+num+te,str,j); }
			else { setTimeout("loadthumb('"+ta+num+te+"','"+str+"',"+j+")",j*50); }
		}
	}
	rotatethumb(0,str);
}

function endr(str)
{	stat[str]=0;
}
Copy and paste that with notepad and save it as rotator.js Make sure you rename it to rotator.js and NOT rotator.js.txt. Make sure you remove the .txt extention.