var barwidth = 210;
var numlinks = 13;

var links   = new Array(numlinks);
var hrefs   = new Array(numlinks);

/* BEGIN LIST OF LINKS */
  links[0] = "Public Safety Home";
  hrefs[0] = "index.htm";

  links[1] = "Academic Building Hours";
  hrefs[1] = "hours.htm";

  links[2] = "Crime Prevention";
  hrefs[2] = "crime_prevention.htm";

  links[3] = "Emergency Information";
  hrefs[3] = "EmInfo.htm";

  links[4] = "Parking Regulations";
  hrefs[4] = "Parking.htm";

  links[5] = "Parking Map";
  hrefs[5] = "Parking.htm#Map";

  links[6] = "Vehicle Registration";
  hrefs[6] = "VehicleReg.htm"

  links[7] = "Escort Service"
  hrefs[7] = "EscortServ.htm"

  links[8] = "Campus Security Policy"
  hrefs[8] = "SecPol.htm"

  links[9] = "Crime Statistics"
  hrefs[9] = "CrimeStat.htm"

 links[10] = "Emergency Call Box Use"
 hrefs[10] = "CrimeReporting.htm"

 links[11] = "Public Safety Staff"
 hrefs[11] = "staff.htm"

 links[12] = "World Hazards Briefings"
 hrefs[12] = "http://www.adjutant.com/briefing/index.shtml"
/* END OF LIST */

document.write('<table border="0" width=' + barwidth + ' cellspacing="0" cellpadding="0">');

for (i=0; i<numlinks; i++) {
	document.write('<tr><td style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 4px; PADDING-TOP: 4px" width="202" align="center">');
	document.write('<p align="right"><font style="font-weight: bold" size="2" face="Verdana" color="#464F56">');
	document.write('<a href="' + hrefs[i] + '" style="text-decoration: none; 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 style="LINE-HEIGHT: 10px">');

document.write('<table border="0" width=202 cellspacing="0" cellpadding="0">');
document.write('<tr><td style="PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 4px; PADDING-TOP: 4px" width="202" align="center">');
document.write('<p align="right"><font style="font-weight: bold" size="2" face="Verdana" color="#464F56"><a href="http://www.rose-hulman.edu" style="text-decoration: none; font-size: 9pt; font-family: Verdana; color: #464F56; font-weight: bold">Rose-Hulman Home</a></font></p>');
document.write('</td></tr>');
document.write('</table>');

document.write('<br style="LINE-HEIGHT: 10px">');