var barwidth = 210;
var numlinks = 22;

var links   = new Array(numlinks);
var hrefs   = new Array(numlinks);

/* LIST OF LINKS */
hrefs[0] = "mission.htm";
links[0] = "Mission, Vision, Guiding Principles";

hrefs[1] = "philosophy.htm";
links[1] = "Philosophy";

hrefs[2] = "introduction.htm";
links[2] = "Introduction to the College";

hrefs[3] = "goals.htm";
links[3] = "Institutional Goals";

hrefs[4] = "http://www.rose-hulman.edu/rose-calendar/";
links[4] = "Calendar";

hrefs[5] = "campus.htm";
links[5] = "Campus and Accreditation";

hrefs[6] = "life.htm";
links[6] = "Student Life";

hrefs[7] = "services.htm";
links[7] = "Student Services";

hrefs[8] = "admission.htm";
links[8] = "Admission to College";

hrefs[9] = "financial.htm";
links[9] = "Costs and Financial Aid";

hrefs[10] = "special.htm";
links[10] = "Special Programs";

hrefs[11] = "regulations.htm";
links[11] = "Academic Regulations";

hrefs[12] = "graduate.htm";
links[12] = "Graduate Program";

hrefs[13] = "program.htm";
links[13] = "Programs of Study";

hrefs[14] = "courses.htm";
links[14] = "Course Descriptions";

hrefs[15] = "minors.htm";
links[15] = "Minors";

hrefs[16] = "";
links[16] = "";

hrefs[17] = "faculty.htm";
links[17] = "Faculty Directory";

hrefs[18] = "staff.htm";
links[18] = "Staff Directory";

hrefs[19] = "http://www.rose-hulman.edu/board/";
links[19] = "Board Of Trustees";

hrefs[20] = "";
links[20] = "";

hrefs[21] = "http://www.rose-hulman.edu/tour/printable";
links[21] = "Campus Map";
/* END OF LIST */



document.write('<table border="0" width=' + barwidth + ' cellspacing="0" cellpadding="0">');
for (i=0; i<numlinks; i++) {
	document.write('<tr><td width="202" height="22">');
	document.write('<p align="right"><font style="font-weight: bold" size="2" face="Verdana" color="#464F56">');
	document.write('<a href="' + hrefs[i] + '" style="font-size: 9pt; font-family: Verdana; color: #464F56; font-weight: bold">');
	document.write(links[i] + '</a></font></td>');
	document.write('</tr>');
}
document.write('</table>');
document.write('<br>');
