<!--
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', '#840015', '#840015');
	myTest.addLabel('blank', 'HOME', 1, 40, '#840015', '#49000c', 'http://pkscatering.com/index.php', 'center');
	myTest.addLabel('blank', 'CONTACT', 2, 65, '#840015', '#49000c', 'http://pkscatering.com/contact.php', 'center');
	myTest.addLabel('blank', 'PHOTOS', 3, 50, '#840015', '#49000c', 'http://pkscatering.com/menus/gallery.php' , 'center');
	myTest.addLabel('blank', 'TESTIMONIALS', 4, 100, '#840015', '#49000c', 'http://pkscatering.com/testimonials.php' , 'center');
	myTest.addLabel('blank', 'MENUS', 5, 55, '#840015', '#49000c', 'http://pkscatering.com/menus.php', 'center');
	myTest.addLabel('blank', 'CLIENTS', 6, 55, '#840015', '#49000c', 'http://pkscatering.com/clients.php', 'center');
	myTest.addLabel('blank', 'BANQUET HALL', 7, 100, '#840015', '#49000c', 'http://pkscatering.com/banquethall.php', 'center');
	myTest.height = 14;

	menus[1] = new menu(135, 'vertical', '#000000', '#000000');
	menus[1].height = 16;
	menus[1].writeMenu();
	
	menus[2] = new menu(125, 'vertical', '#000000', '#000000');
	menus[2].height = 16;
	menus[2].writeMenu();
	
	menus[3] = new menu(260, 'vertical', '#000000', '#000000');
	menus[3].height = 16;	
	menus[3].writeMenu();
	
	menus[4] = new menu(125, 'vertical', '#000000', '#000000');
	menus[4].height = 16;
	menus[4].writeMenu();
	
	menus[5] = new menu(225, 'vertical', '#000000', '#000000');
	menus[5].height = 16;
	menus[5].addItem('menuItemBullet', 'Customizing Your Own Buffet', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/custombuffet.php', 'left');
	menus[5].addItem('menuItemBullet', 'Custom Carving Designs', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/customcarving.php', 'left');
	menus[5].addItem('menuItemBullet', 'Mouth Watering Appetizers', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/appetizers.php', 'left');
	menus[5].addItem('menuItemBullet', 'Box Lunches & Salads', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/boxlunches.php', 'left');
	menus[5].addItem('menuItemBullet', 'Breakfast & Deli Sandwich Trays', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/breakfast.php', 'left');
	menus[5].addItem('menuItemBullet', 'Carving Stations & Appetizer Buffets', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/carvingstations.php', 'left');
	menus[5].addItem('menuItemBullet', 'Catered Dinner Entrees', null, 220, '#840015', '#49000c', 'http://pkscatering.com/menus/catereddinner.php', 'left');
	menus[5].writeMenu();

	menus[6] = new menu(125, 'vertical', '#000000', '#000000');
	menus[6].height = 16;
	menus[6].writeMenu();
	
	menus[7] = new menu(125, 'vertical', '#000000', '#000000');
	menus[7].height = 16;
	menus[7].writeMenu();
	
	menus[1].align='left';
	menus[2].align='left';
	menus[3].align='left';
	menus[4].align='left';
	menus[5].align='left';
	menus[6].align='right';
	menus[7].align='right';
}

