// *****************************************************************************
// **                                SETTINGS                                 **
// *****************************************************************************
// 'linka' use this if part of the URL is the same in ALL the links
// the filename of the page the menu appears in eg 'menu.html'
thisPage='hpdlinks.html';
// Do you want to use images for the category bullets?
// If so then specify the path to your images folder from the menu page
imgPath='includes/homepage/images/';
// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no
// give image names and dimensions
lev1OpName='open.gif';			// open image name
lev1OpHeight='10';				// image height
lev1OpWidth='17';				// image width
lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='10';			// image height
lev1ClosWidth='17';				// image width
// do you want to use images for the sub-category bullets?
lev2img='yes';		// insert yes or no// give image names and dimensions
lev2Name='bullet.gif';			// image name
lev2Height='10';				// image height
lev2Width='34';					// image width
// do you want to use a text character for the sub-category bullets?
lev2Char='no';		// insert yes or no
// set bullet character for level 2 bullets
bullet = '&#155; ';
// base target - the frame that the links are targetting
base = '_self';
// *****************************************************************************
// **                             END OF SETTINGS                             **
// *****************************************************************************
// pulls 'page' variable out of URL - do not alter
	var x = 0
	page = location.search.substr(1).split("?")
	for (x=0;x<=page.length;x++) {
		eval(page)
		}
page = escape(page);
page = page.slice(7);
// do not alter this bit
function subMenu(name,linkb) {
 this.name = name;
 this.linkb = linkb;
}
document.write('<BASE target="' + base + '">');
// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************
// Audiology Menu
if (page=='aud') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Audiology','http://www.nova.edu/aud/');
thisMenu[1] = new subMenu('Other Suggested Links (NONE)','');
thisMenu[2] = new subMenu('Associations (NONE)','');
}
// Dental Medicine Menu
if (page=='den') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Dental Medicine','http://dental.nova.edu');
thisMenu[1] = new subMenu('Other Suggested Links','dentistry.html#links');
thisMenu[2] = new subMenu('Associations','dentistry.html#associations');
}
// Medical Sciences Menu
if (page=='med') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Medical Sciences','http://medsciences.nova.edu/');
thisMenu[1] = new subMenu('Other Suggested Links (NONE)','');
thisMenu[2] = new subMenu('Associations (NONE)','');
}
// Nursing Menu
if (page=='nur') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Allied Health and Nursing','http://www.nova.edu/cah/');
thisMenu[1] = new subMenu('Other Suggested Links','nursing.html#links');
thisMenu[2] = new subMenu('Associations (NONE)','');
}
// Occupational Therapy Menu
if (page=='ot') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Occupational Therapy','http://www.nova.edu/cwis/centers/hpd/allied-health/');
thisMenu[1] = new subMenu('Other Suggested Links','occutherapy.html#links');
thisMenu[2] = new subMenu('Associations','occutherapy.html#associations');
}
// Optometry Menu
if (page=='op') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Optometry','http://www.nova.edu/cwis/centers/hpd/optometry/');
thisMenu[1] = new subMenu('Other Suggested Links','optometry.html#links');
thisMenu[2] = new subMenu('Associations','optometry.html#associations');
}
// Osteopathic Medicine Menu
if (page=='om') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Osteopathic Medicine','http://medicine.nova.edu/');
thisMenu[1] = new subMenu('Other Suggested Links','osteomed.html#links');
thisMenu[2] = new subMenu('Associations','osteomed.html#associations');
}
// Pharmacy Menu
if (page=='pha') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Pharmacy','http://pharmacy.nova.edu/');
thisMenu[1] = new subMenu('Other Suggested Links','pharmacy.html#links');
thisMenu[2] = new subMenu('Drug Databases','pharmacy.html#drugs');
thisMenu[3] = new subMenu('Associations','pharmacy.html#associations');
}
// Physical Therapy Menu
if (page=='pt') {
thisMenu = new Array();
thisMenu[0] = new subMenu('College of Physical Therapy','http://www.nova.edu/pt/');
thisMenu[1] = new subMenu('Other Suggested Links','physicaltherapy.html#links');
thisMenu[2] = new subMenu('Associations','physicaltherapy.html#associations');
}
// Physician Assistant Menu
if (page=='pa') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Department of Physician Assistant Studies','http://www.nova.edu/pa/');
thisMenu[1] = new subMenu('Other Suggested Links (NONE)','');
thisMenu[2] = new subMenu('Associations','physicianasst.html#associations');
}
// Public Health Menu
if (page=='ph') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Public Health Program','http://www.nova.edu/ph/');
thisMenu[1] = new subMenu('Other Suggested Links','publichealth.html#links');
thisMenu[2] = new subMenu('Associations','publichealth.html#associations');
}
// Health and Medical Links Menu
if (page=='hm') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Atlases, Cases, Sounds and Images','acsi.html');
thisMenu[1] = new subMenu('Other Suggested Links','generalmed.html#links');
thisMenu[2] = new subMenu('Associations','generalmed.html#associations');
}