// menu.js

document.write("<div style='float: left; width: 33%'>");
document.write("<a href='default.aspx'>About the Program</a><br />");
document.write("<a href='degrees.aspx'>Degree Programs</a><br />");
document.write("<a href='procedures.aspx'>Application Procedures</a><br />");
document.write("<a href='admission.aspx'>Admission and Retention</a><br />");
document.write("</div>");

document.write("<div style='float: left; width: 33%'>");
document.write("<a href='profile.aspx'>Admission Profile</a><br />");
document.write("<a href='forms.aspx'>Application Forms</a><br />");
document.write("<a href='policies.aspx'>Program Policies</a><br />");
document.write("<a href='costs.aspx'>Program Costs</a><br />");
document.write("</div>");

document.write("<div style='float: left; width: 33%'>");
document.write("<a href='pdf/Cardio_Student_Handbook.pdf' target='_blank'>Student Handbook</a><br />");
document.write("<a href='faq.aspx'>Frequently Asked Questions</a><br />");
document.write("<a href='staff.aspx'>Faculty/Staff</a>");
document.write("</div>");

// end