linkboximages = new Array(
"/ludumdare/20/thumb.png", "/ludumdare/20/index.shtml",
"/uhdvthumb.png", "http://www.globalgamejam.org/2011/ultra-happy-death-virus-hd",
"/ludumdare/19/thumb.png", "/ludumdare/19/index.shtml",
"/egp/tunnelsofmanyrooms/thumb.png", "/egp/tunnelsofmanyrooms/index.shtml",
"/ludumdare/18/thumb.png", "/ludumdare/18/index.shtml",
"/egp/desktopdomains/thumb.png", "/egp/desktopdomains/index.shtml",
"/thekey/thumb.png", "/thekey/index.shtml",
"/egp/spacebeer/thumb.png", "/egp/spacebeer/index.shtml",
"/egp/yeoldeprojector/thumb.png", "/egp/yeoldeprojector/index.shtml",
"/egp/50rocks50guns/thumb.png", "/egp/50rocks50guns/index.shtml",
"/egp/flatworld/thumb.png", "/egp/flatworld/index.shtml",
"/projectgeneric/thumb.png", "/projectgeneric/index.shtml",
"/egp/theredswitch/thumb.png", "/egp/theredswitch/index.shtml");

currentImage = -1;

function cycle()
{
	if(document.images)
	{
		currentImage++;
		if(currentImage >= linkboximages.length/2)
		{
			currentImage = 0;
		}
		document.getElementById('linkboximage').src = linkboximages[currentImage*2];
		document.getElementById('linkboximagelink').href = linkboximages[currentImage*2 + 1];
		setTimeout("cycle()", 5000);
	}
}
