// menu script

// col 1

document.write("<div style='float: left; width: 50%'>");

document.write("<a href='staff.aspx'>Staff Information</a><br />");
document.write("<a href='general.aspx'>General Information</a><br />");
document.write("<a href='emergencies.aspx'>Emergencies</a><br />");
document.write("<a href='notification.aspx'>Cancellations, Closings and Weather</a><br />");
document.write("<a href='services.aspx'>Services</a><br />");

document.write("</div>");

// col 2

document.write("<div style='float: right; width: 50%'>");
document.write("<a href='parking.aspx'>Parking and Traffic Regulations</a><br />");
document.write("<a href='events.aspx'>Event Coordination with Security</a><br />");
document.write("<a href='crimes.aspx'>Crime Information at OSU-OKC</a><br />");
document.write("<a href='employees.aspx'>OSU-OKC Employee Information</a><br />");
document.write("<a href='default.aspx'>Security Home</a><br />");

document.write("</div>");

// end