var barwidth = 210;
var numlinks = 18;

var links   = new Array(numlinks);
var hrefs   = new Array(numlinks);

/* BEGIN LIST OF LINKS */

  links[0] = "Human Resources Home";
  hrefs[0] = "http://www.rose-hulman.edu/HR";

  links[1] = "Employment Opportunities";
  hrefs[1] = "https://jobs.rose-hulman.edu";

  links[2] = "<i>ASK</i> HR: FAQ's for Supervisors";
  hrefs[2] = "http://www.rose-hulman.edu/HR/ASK HR/index.html";
    
  links[3] = "Benefit and Retirement Plans";
  hrefs[3] = "http://www.rose-hulman.edu/HR/benefit_plans.html";
  
  links[4] = "E-Bulletin Board Policy";
  hrefs[4] = "http://www.rose-hulman.edu/HR/Policies/Bulletin%20Board%20Policy_Septrelease.pdf";

  links[5] = "Employee Handbooks";
  hrefs[5] = "http://www.rose-hulman.edu/HR/handbook.html";

  links[6] = "Employee Rewards and Recognition Program";
  hrefs[6] = "http://www.rose-hulman.edu/HR/Rewards and Recognition Program 2005_FINAL_FINAL.pdf";

  links[7] = "Faculty Staff Directory";
  hrefs[7] = "http://www.rose-hulman.edu/HR/Directory/index.htm";

  links[8] = "Forms";
  hrefs[8] = "http://www.rose-hulman.edu/HR/forms/index.html";
  
  links[9] = "General Institute Policies";
  hrefs[9] = "http://www.rose-hulman.edu/HR/Policies/index.html";

  links[10] = "Holiday Schedules";
  hrefs[10] = "http://www.rose-hulman.edu/HR/Holiday Schedule.pdf";
  
  links[11] = "Influenza-Like Symptoms (ILI) - Employee Policy and Procedure";
  hrefs[11] = "http://www.rose-hulman.edu/HR/INFLUENZA_employee_policy.pdf";

  links[12] = "Organizational Charts";
  hrefs[12] = "http://www.rose-hulman.edu/HR/OrgChart/RHOrgRefIndex1.htm";
 
  links[13] = "Payroll Information";
  hrefs[13] = "http://www.rose-hulman.edu/HR/PayrollWebpage/index.html";
  
  links[14] = "Professional Development";
  hrefs[14] = "http://www.rose-hulman.edu/HR/ProfessionalDevelopment/index.htm";
    
  links[15] = "SimplyWell Program";
  hrefs[15] = "http://www.rose-hulman.edu/HR/SimplyWell Program/index.html";

  links[16] = "Student Employment";
  hrefs[16] = "http://www.rose-hulman.edu/HR/Student Employment/index.html";

  links[17] = "Upcoming Events";
  hrefs[17] = "http://www.rose-hulman.edu/HR/Upcoming%20Events/index.shtml";

  links[18] = "Archived Information";
  hrefs[18] = "http://www.rose-hulman.edu/HR/Archived%20Webpage/index.html";
  
  /* 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: 3px; 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('<table border="0" width=202 cellspacing="0" cellpadding="0">');
document.write('<tr><td align="center" width="202">');
document.write('<br style="LINE-HEIGHT: 5px">');
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('<br style="LINE-HEIGHT: 5px">');
document.write('</td></tr>');
document.write('</table>');
