<!--
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");
	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',642, 'horizontal', '#666666', '#666666');
	myTest.addLabel('labelBullet', 'Home', 1, 128, '#333333', '#666666', 'http://www.thesterlinggroup.org/index.php', 'left');
	myTest.addLabel('labelBullet', 'Services', 3, 128, '#333333', '#666666', '#' , 'left');
	myTest.addLabel('labelBullet', 'Pricing', 4, 128, '#333333', '#666666', '#' , 'left');
	myTest.addLabel('labelBullet', 'Clientele', 5, 128, '#333333', '#666666', 'http://www.thesterlinggroup.org/clients.php', 'left');
	myTest.addLabel('labelBullet', 'About TSG', 2, 128, '#333333', '#666666', '#', 'left');
	myTest.height = 14;

	menus[1] = new menu(135, 'vertical', '#000000', '#000000');
	menus[1].height = 16;
	menus[1].writeMenu();
	
	menus[2] = new menu(125, 'vertical', '#666666', '#666666');
	menus[2].height = 16;
	menus[2].addItem('menuItemBullet', 'History', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/history.php', 'left');
	menus[2].addItem('menuItemBullet', 'Facility', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/facility.php', 'left');
	menus[2].addItem('menuItemBullet', 'Staff', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/staff.php', 'left');
	menus[2].addItem('menuItemBullet', 'Contact Info', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/contact.php', 'left');
	menus[2].addItem('menuItemBullet', 'Mission Statement', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/missionstatement.php', 'left');
	menus[2].writeMenu();
	
	menus[3] = new menu(260, 'vertical', '#333333', '#333333');
	menus[3].height = 16;	
	menus[3].addItem('menuItemBullet', 'Video Productions / Recording', null, 260, '#000000', '#666666', 'http://www.thesterlinggroup.org/videoproduction.php', 'left');
	menus[3].addItem('menuItemBullet', 'Audio Productions / Recording', null, 260, '#000000', '#666666', 'http://www.thesterlinggroup.org/audioproduction.php', 'left');
	menus[3].addItem('menuItemBullet', 'Web Design', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/webdesign.php', 'left');
	menus[3].addItem('menuItemBullet', 'Graphic Design', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/graphicdesign.php', 'left');
	menus[3].addItem('menuItemBullet', 'Duplication / Replication CD - DVD - VHS', null, 260, '#000000', '#666666', 'http://www.thesterlinggroup.org/duplication.php', 'left');
	menus[3].addItem('menuItemBullet', 'CD-ROM Productions', null, 260, '#000000', '#666666', 'http://www.thesterlinggroup.org/cdromproduction.php', 'left');
	menus[3].addItem('menuItemBullet', 'DVD Productions', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/dvdproduction.php', 'left');
	menus[3].addItem('menuItemBullet', 'Custom Packaging & Printing', null, 260, '#000000', '#666666', 'http://www.thesterlinggroup.org/printmedia.php', 'left');
	menus[3].writeMenu();
	
	menus[4] = new menu(125, 'vertical', '#333333', '#333333');
	menus[4].height = 16;
	menus[4].addItem('menuItemBullet', 'Business Cards', null, 135, '#000000', '#666666', 'http://www.thesterlinggroup.org/pricingbusinesscards.php', 'left');
	menus[4].addItem('menuItemBullet', 'Post Cards', null, 135, '#000000', '#666666', 'http://www.thesterlinggroup.org/pricingpostcards.php', 'left');
	menus[4].addItem('menuItemBullet', 'Productions', null, 135, '#000000', '#666666', 'http://www.thesterlinggroup.org/requestquote.php', 'left');
	menus[4].addItem('menuItemBullet', 'Request Quote', null, 135, '#000000', '#666666', 'http://www.thesterlinggroup.org/requestquote.php', 'left');
	menus[4].writeMenu();
	
	menus[5] = new menu(125, 'vertical', '#000000', '#000000');
	menus[5].height = 16;
	menus[5].writeMenu();

	menus[7] = new menu(125, 'vertical', '#333333', '#333333');
	menus[7].height = 16;
	menus[7].addItem('menuItemBullet', 'CD', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/duplication.php', 'left');
	menus[7].addItem('menuItemBullet', 'DVD', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/duplication.php', 'left');
	menus[7].addItem('menuItemBullet', 'VHS', null, 125, '#000000', '#666666', 'http://www.thesterlinggroup.org/duplication.php', 'left');
	menus[7].writeMenu();
	
	menus[1].align='left';
	menus[2].align='left';
	menus[3].align='left';
	menus[4].align='left';
	menus[5].align='left';
	menus[7].align='right';
}

