function putIcon(name, pic, addy) {
var n = name;
var a = addy;
var p = pic;
	document.write('<TD ALIGN="center" WIDTH="100" VALIGN="top">');
	document.write('<A HREF=' + a + '>');
	document.write('<IMG SRC="images/' + p + '" HEIGHT=60 WIDTH=60 BORDER=0>');
	document.write('<P STYLE="font-family: terminal, arial";>' + n + '</P>');
	document.write('</TD>');
}
document.write('<CENTER>');
document.write('<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" VALIGN="center"><TR>');

// to add more icons
// put name, address of picture, link address

putIcon("Home", "nav_home.gif", "index.html");
putIcon("Cast", "nav_cast.gif", "cast.html");
putIcon("Archive", "nav_archive.gif", "archives.html");
putIcon("Bonus", "nav_bonus.gif", "bonus.html");
putIcon("Trivia", "nav_trivia.gif", "questions.html");
putIcon("Forum", "nav_forum.gif", "http://pub57.ezboard.com/foldskooledfrm1");
putIcon("Links", "nav_links.gif", "links.html");

document.write('</TR></TABLE></CENTER>');