var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [

	[wrap_root('ABOUT US'), 'facts.htm',
		[wrap_child('Mission Statement'), 'mission.htm'],
		[wrap_child('Basic Facts'), 'facts.htm'],
		[wrap_child('Financials'), 'financial.htm'],
		[wrap_child('Contact Us'), 'contact.htm']
	],

	[wrap_root('THE 2004 RIDE'), 'route.htm',
		[wrap_child('The Riders'), 'riders.htm'],
		[wrap_child('The Route Map'), 'route.htm'],
		[wrap_child('JOURNAL ARCHIVE -->'), 'archive.htm',
		  [wrap_child('MAY 04'), 'archive-may.htm'],
		 	[wrap_child('JUNE 04'), 'archive-jun.htm'],
		 	[wrap_child('JULY 04'), 'archive-jul.htm'],
		 	[wrap_child('AUGUST 04'), 'archive-aug.htm'],
			[wrap_child('SEPTEMBER 04 +'), 'archive-sep.htm'],
			[wrap_child('+Wells Fargo Event'), 'WF/index.htm'],
			[wrap_child('+Devil Mtn Event'), 'DM/index.htm'],
			[wrap_child('+Alices Rest. Event'), 'SF/index.htm'],
  	  [wrap_child('OCTOBER 04'), 'archive-oct.htm'],
			[wrap_child('NOVEMBER 04'), 'archive-nov.htm'],
			[wrap_child('DECEMBER 04 +'), 'archive-dec.htm'],
			[wrap_child('+Homecoming BBQ Weekend'), 'BBQ/index.htm']
		],
		[wrap_child('The Schedule'), 'schedule.htm'],
		[wrap_child('The Bikes & Gear'), 'bikes.htm'],
		[wrap_child('Ride Support Team'), 'support.htm'],
		[wrap_child('Meet Our Sponsors'), 'sponsors.htm'],
		[wrap_child('Majority Partner'), 'charity.htm'],
		[wrap_child('Minority Partners'), 'charity2.htm'],
		[wrap_child('VIEW FROM THE SIDECAR-->'), 'sidecar.htm',
			[wrap_child('Archive Stories'), 'sidecar.htm#SidecarArchive']
    ],
		[wrap_child('2004 Events'), 'events.htm'],
		[wrap_child('Our 2004 Guestbook'), 'guestbook.htm']
	],

	[wrap_root('HOGS, DOGS & KIDS'), 'teachers.htm',
		[wrap_child('Teachers Corner'), 'teachers.htm'],
		[wrap_child('Little People - Big Hearts'), 'hearts.htm'],
		[wrap_child('View from the Sidecar'), 'sidecar.htm',
			[wrap_child('Archive Stories'), 'sidecar.htm#SidecarArchive']
    ]
	],

	[wrap_root('DOG STORIES'), 'dogstories.htm',
    [wrap_child('Main Story Page'), 'dogstories.htm'],
    [wrap_child('Story 08'), 'story08.htm'],
    [wrap_child('Story 07'), 'story07.htm'],
    [wrap_child('Story 06'), 'story06.htm'],
    [wrap_child('Story 05'), 'story05.htm'],
    [wrap_child('Story 04'), 'story04.htm'],
    [wrap_child('Story 03'), 'story03.htm'],
    [wrap_child('Story 02'), 'story02.htm'],
    [wrap_child('Story 01'), 'story01.htm']
 ],

	[wrap_root('DONATE'), 'donate.htm'],

//	[wrap_root('BECOME A SPONSOR'), 'besponsor.htm'],

	[wrap_root('LATEST NEWS'), 'press.htm'],

	[wrap_root('- HOME PAGE -'), 'index.htm', 
	]
]




function wrap_child (text) {
	return '<CENTER>' + text + '</CENTER>';
}

function wrap_root (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td><font color=white>|</font></td>' : '') + '<td valign=middle align=center class=m0' + states[i] + 'i width=100% height=25>' + text + '</td></tr></table>'
	return res;
}
