<!--
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', 'Services', 3, 80, '#00938f', '#5a3f99', 'services.php', 'center');
	myTest.addLabel('blank', 'Locations', 4, 80, '#00938f', '#5a3f99', '#' , 'center');
	myTest.addLabel('blank', 'Contact Us', 5, 80, '#00938f', '#5a3f99', 'contact.php' , 'center');
	myTest.addLabel('blank', 'Employment', 6, 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', 'history.php', 'left');
	menus[2].addItem('menuItemBullet', 'Charities', null, 100, '#7654c6', '#5a3f99', 'charities.php', 'left');
	menus[2].writeMenu();
	
	menus[3] = new menu(125, 'vertical', '#000000', '#000000');
	menus[3].height = 16;
	menus[3].writeMenu();
	
	menus[4] = new menu(100, 'vertical', '#000000', '#000000');
	menus[4].height = 16;	
	menus[4].addItem('menuItemBullet', 'Chicago, IL', null, 100, '#7654c6', '#5a3f99', 'chicago.php', 'left');
	menus[4].addItem('menuItemBullet', 'Dallas, TX', null, 100, '#7654c6', '#5a3f99', 'dallas.php', 'left');
	menus[4].writeMenu();
	
	menus[5] = new menu(125, 'vertical', '#000000', '#000000');
	menus[5].height = 16;
	menus[5].writeMenu();
	
	menus[6] = new menu(225, 'vertical', '#000000', '#000000');
	menus[6].height = 16;
	menus[6].writeMenu();

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

