/* Main Menu Bar */ 
ajmenu1 = new mainMenu(
 	'horizontal', 	/* menu direction */
 	3, 				/* spacing between menu items */
 	'transparent', 	/* background of main menu */
 	'transparent', 	/* highlight of main menu */
 	'#806A41', 		/* font color */
 	'white', 		/* highlight font color */
 	''				/* background image */
 );
 ajmenu1.cellpadding=0;
 ajmenu1.divider = '|';

/* menu items across the top */
 ajmenu1.addImages(
 	'/index.php',			'/im/a9.jpg', 	'/im/b9.jpg',	/* home */
 	'',						'/im/a11.jpg', 	'/im/b11.jpg',	/* about us */
  	'',						'/im/a13.jpg', 	'/im/b13.jpg',	/* public resources */
 	'',						'/im/a15.jpg', 	'/im/b15.jpg',	/* attorney resources */
 	'/members/index.php',	'/im/a17.jpg', 	'/im/b17.jpg'	/* members area */
 );

/* About Us */
 ajmenu1 = new subMenu(
 	'2',
 	'#907A51', 
 	'#563E10', 
 	'white', 
 	'white');
 ajmenu1.addItems(
	 "Board of Directors", 		"/officers.php", 
	 "Sections", 				"/sections/", 
	 "Committees", 				"/sections/",
	 "Staff", 					"/staff.php" , 
	 "Member Search", 			"/search/",
	 "History - Presidents", 	"/history.php"
	);

/* Public Resources */
ajmenu1 = new subMenu(
 	'3',
 	'#907A51', 
 	'#563E10', 
 	'white', 
 	'white'
 	);
 ajmenu1.addItems(
	"Lawyer Referrals", 	"/referrals.php", 
	"Legal Links", 			"/links.php", 
/*	"Legal Forms", 			"/forms/",   */
	"Probate Forms", 		"/probate/" , 
	"Peoples Law Guide", 	"/articles.php"
);

/* Attorney Resources */
 ajmenu1 = new subMenu(
 	'4',
 	'#907A51', 
 	'#563E10', 
 	'white', 
 	'white'
 );
 ajmenu1.addItems(
	 "Member Benefits", 	"/benefits.php", 
	 "Applications", 		"/application/", 
	 "Legal Forms",			"/forms/", 
	 "Calendar",			"/calendar/" , 
	 "Peer Review",			"/peerreview", 
	 "Legal Links", 		"/links.php"
 );
