

var quicklinks = [
	{text: "Please select...", url: ""},
	{text: "The Community College of Baltimore County", url: "/index.html"},
	{text: "CCBC Catalog", url: "/catalog/index.html"},
	{text: "CCBC Class Schedule", url: "/schedule/index.html"},
	{text: "Continuing Education (CEED)", url: "/ceed/index.html"},
	{text: "Programs and Courses", url: "/programs.html"},
	{text: "School of Applied and Information Technology", url: "/sait/index.html"},
	{text: "School of Business, Social Sciences, Wellness and Education", url: "/bsswe/index.html"},
	{text: "School of Health Professions", url: "/allied_health/index.html"},
	{text: "School of Justice", url: "/soj/index.html"},
	{text: "School of Liberal Arts", url: "/liberal_arts/index.html"},
	{text: "School of Mathematics and Science", url: "/math_science/index.html"},
	{text: "Contact Us!", url: "/contactus.html"}
];

document.write("<select onChange=\"MM_jumpMenu('parent', this, 1)\">");
for(var i = 0; i < quicklinks.length; i++) {
	document.write("<option value=\"" + quicklinks[i].url + "\">" + quicklinks[i].text + "</option>");
}
document.write("</select>");
document.write("</td>");
document.write("<td class=\"quicklinksPadding\"><img src=\"/images/empty.gif\" width=\"5\" height=\"20\">");

