var description = new Array(6);
var link = new Array(6);
description[1]="Home";
description[2]="Members";
description[3]="Pictures";
description[4]="Past News";
description[5]="Archives";
description[6]="Contact";
link[1]="http://www-scf.usc.edu/~uscchess/index.htm";
link[2]="http://www-scf.usc.edu/~uscchess/members.htm";
link[3]="http://www-scf.usc.edu/~uscchess/pictures.htm";
link[4]="http://www-scf.usc.edu/~uscchess/events.htm";
link[5]="http://www-scf.usc.edu/~uscchess/archives.htm";
link[6]="http://www-scf.usc.edu/~uscchess/contact.htm";

document.write("<br><font color=\"#FFFFCD\">");
for (var i=1;i<description.length;i++)
{
	document.write("<a style=\"color: #FFFFCD\" href=\"");
	document.write(link[i]);
	document.write("\">");
	document.write(description[i]);
	document.write("</a><br><br>");
}