<!--
function MenuNames() {
	sniffBrowsers();
	menuItemBullet = new bulletPoint("http://www.thesterlinggroup.org/bullets/one/menu_off.gif","http://www.thesterlinggroup.org/bullets/one/menu_on.gif");
	labelBullet = new bulletPoint("http://www.thesterlinggroup.org/bullets/one/header_off.gif","http://www.thesterlinggroup.org/bullets/one/header_on.gif");
	blank = new bulletPoint("http://pkscatering.com/graphics/blank.gif","http://pkscatering.com/graphics/blank.gif");
	subMenuBullet = new bulletPoint("http://www.thesterlinggroup.org/bullets/one/sub_header_off.gif","http://www.thesterlinggroup.org/bullets/one/sub_header_on.gif");

	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';
}

