<!--
function MenuNames() {
	sniffBrowsers();
	menuItemBullet = new bulletPoint("http://qandm.com/graphics/bulletpoint.png","http://qandm.com/graphics/bulletpoint.png");
	labelBullet = new bulletPoint("http://qandm.com/graphics/bulletpoint.png","http://qandm.com/graphics/bulletpoint.png");
	blank = new bulletPoint("http://qandm.com/graphics/bulletpoint.png","http://qandm.com/graphics/bulletpoint.png");
	subMenuBullet = new bulletPoint("http://qandm.com/graphics/bulletpoint.png","http://qandm.com/graphics/bulletpoint.png");

	myTest = new menuBar('myTest',400, 'horizontal', '#5a3f99', '#5a3f99');
	myTest.addLabel('blank', 'Home', 1, 80, '#00938f', '#5a3f99', 'index.php', 'center');
	myTest.addLabel('blank', 'About Us', 2, 80, '#00938f', '#5a3f99', '#', 'center');
	myTest.addLabel('blank', 'Employment', 3, 100, '#00938f', '#5a3f99', 'employment.php', 'center');
	myTest.height = 14;

	menus[1] = new menu(135, 'vertical', '#5a3f99', '#5a3f99');
	menus[1].height = 16;
	menus[1].writeMenu();

	menus[2] = new menu(100, 'vertical', '#5a3f99', '#5a3f99');
	menus[2].height = 16;
	menus[2].addItem('menuItemBullet', 'History', null, 100, '#7654c6', '#5a3f99', '#', 'left');
	menus[2].addItem('menuItemBullet', 'Charities', null, 100, '#7654c6', '#5a3f99', 'charities.php', 'left');
	menus[2].writeMenu();
	
	menus[3] = new menu(225, 'vertical', '#000000', '#000000');
	menus[3].height = 16;
	menus[3].writeMenu();

	menus[1].align='left';
	menus[2].align='left';
	menus[3].align='left';
}


