var thumbsbackground = new Array();
function preload(x)
{
	for(x=0;x<thumbsbackground.length;x++)
	{
		if(x<=12) timeout = x*100; else timeout = x*200;
		setTimeout("document.getElementById(\"thumb" + x + "\").style.backgroundImage = \"url(" + thumbsbackground[x] + ")\"",timeout);
	}
}
window.onload = function()
{
	pasteFlash("header", "templates/standard/layout/headcs2.swf", 860, 100, "headerflash");
	setTimeout('preload()',200);
}