

var myMenu = 
[
	[null,'Home','index.php',null,null], // this is link one which is set to your home page
	_cmSplit,
	[null,'About Us','about.php',null,null],
	_cmSplit,
	[null, 'Events',null,null,null, // by leaving the ] bracket of it then allows the script to produce and extra pop out menu 
	                   [null,'Our Events','our-events.php',null,null],
		               [null,'Biker Nights','biker-nights.php',null],
					   [null,'Halloween',null,null,null,
						          [null,'2008','halloween/2008.php',null]],
					   [null,'Military vehicles',null,null,null,
						          [null,'2008','military/2008.php',null]],
					   [null,'Coming Soon','coming-soon.php',null]],
	_cmSplit, // these are lines brakes separating the text
	[null,'Contact Us','contact.php',null,null],
	_cmSplit, // these are lines brakes separating the text
	[null,'Guestbook','guestbook.php',null,null],
	_cmSplit, // these are lines brakes separating the text
	[null,'Links','links.php',null,null],
	,
];

// this will add a vertical menu to the element with id=myMenuID
cmDraw('myMenuID', myMenu, 'vbr', cmThemeOffice, 'ThemeOffice');
