sites = new Array("Joshua Brookover.com","Andrew Thrall.com","Pinktards.com","Worms!.ja-lb.com","RMVX.net");
urls = new Array("http://www.joshuabrookover.com","http://www.andrewthrall.com/","http://www.pinktards.com/","http://worms.ja-lb.com/","http://rmvx.net/");
desc = new Array("Website currently under construction.  No information released at this time.","Website currently under construction.  No information released at this time.","Pinktards is a side-scrolling online platform shooter featuring worm-like creatures known as \"Pinktards,\" who fight for their survival in free for all and team deathmatches.  Download the latest version, share your custom levels, discuss on our community forum and more at Pinktards.com!","Worms! is the predecessor to the game \"Pinktards\" which features Worms! fighting against each other in FFA, Team FFA, Oddball and CTF.  Customize your worm and <s>fight evil</s> kill other worms in customizable levels, with tons of settings to make each match unique!","RMVX.net is a free Tiny URL service that lets you condense long URLs into just 21 characters.");
defaultDesc = "Here is a list of all the sites hosted on this server.<br /><br />Scroll over a site for more information.";

function Gen()
{
	str = "";
	for (l=0; l<sites.length; l+=1)
	{
		str += "<a href='"+urls[l]+"' onmouseover='Description("+l+")' onmouseout='Description(-1)'>"+sites[l]+"</a>";
		if (l != sites.length-1)
		{
			str += "<br />";
		}
	}
	document.getElementById("sites").innerHTML = str;
	document.getElementById("description").innerHTML = defaultDesc;
}

function Description(l)
{
	if (l == -1)
	{
		document.getElementById("description").innerHTML = defaultDesc;
	}
	else
	{
		document.getElementById("description").innerHTML = desc[l];
	}
}

setTimeout("Gen()",100);