linkURL = new Array("http://www.upurload.com/");
linkImage = new Array("http://www.upurload.com/files/5bddb8f2279e067271df18eadfc8733b.png");
linkDescription = new Array("UpUrLoad.com is a simple to use upload service mainly for storing and sharing files. This service is free and you do not need to make an account to use it. File limits are 10MBs with no account and 100MBs with an account!");
var descriptionDefault = "Hover over an image to learn more.";

function Init()
{
	document.getElementById("description").innerHTML = descriptionDefault;
	var s;
	s = "<center>";
	for (l=0; l<linkURL.length; l++)
	{
		s += "<a href='"+linkURL[l]+"' onmouseover='SetDesc("+l+")' onmouseout='SetDesc(-1)'><img src='"+linkImage[l]+"' border='0' style='width:88px;height:31px' /></a>";
		if ((l+1) % 4 == 0)
		{
			s += "<br />";
		}
		else if (l != linkURL.length-1)
		{
			s += "&nbsp;";
		}
	}
	s += "</center>";
	document.getElementById("links").innerHTML = s;
}

function SetDesc(id)
{
	if (id == -1)
	{
		document.getElementById("description").innerHTML = descriptionDefault;
	}
	else
	{
		document.getElementById("description").innerHTML = linkDescription[id];
	}
}
setTimeout("Init()",10);