var links = new Array("hl", "index.html", "news.html", "hl", "csharp.html", "cpp.html", "hl", "downloads.html", "aimcc/index.html", "hl", "pics.html", "misc.html", "contact.html", "starcraft.html", "spfriends.html");
var titles = new Array("main", "intro", "news", "source", "c# stuff", "c++ stuff", "programs", "downloads", "aimcc", "the usual", "pictures", "miscellaneous", "contact", "starcraft", "friends");

for ( var i=0 ; i<links.length ; i++ )
{
 	if ( links[i] == "hl" )
	   window.document.write('<b><u>' + titles[i] + '</u>::</b><br>');
	else 
		 window.document.write('&nbsp&nbsp&nbsp&nbsp<a href="' + links[i] + '">' + titles[i] + '</a><br>');
}