var barwidth = 210;
var numlinks = 13;

var links   = new Array(numlinks);
var hrefs   = new Array(numlinks);


/* BEGIN LIST OF LINKS */

  links[0] = "Mission Statement";
  hrefs[0] = "mission.htm";

  links[1] = "Equipment";
  hrefs[1] = "equipment.htm";

  links[2] = "Selected CCD Images";
  hrefs[2] = "ccdimages.htm";

  links[3] = "Events";
  hrefs[3] = "events.htm";

  links[4] = "History";
  hrefs[4] = "history/index.htm";

  links[5] = "Construction";
  hrefs[5] = "construction/oakley1.htm";

  links[6] = "Southern Sky Observatory";
  hrefs[6] = "construction/osso1.htm";

  links[7] = "Rose Astronomical Society";
  hrefs[7] = "http://www.rose-hulman.edu/Users/groups/astronomy/";

  links[8] = "Research";
  hrefs[8] = "research.htm";

  links[9] = "Acknowledgements";
  hrefs[9] = "acknowledgements.htm";

  links[10] = "Contact Us";
  hrefs[10] = "contact.htm";

  links[11] = "Observatory Home";
  hrefs[11] = "index.htm";
  
  links[12] = "Rose-Hulman Home";
  hrefs[12] = "http://www.rose-hulman.edu";

/* 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>');