// Initialize WebDDM
function initWebDDM ()
{
	// Begin base menu
	var menu = {
		'position':'relative',
		'top':0,
		'left':0,
		'width':600,
		'height':25,
		'expand_menu':'auto',

		'items':{
			'top':0,
			'left':0,
			'width':600,
			'height':25,

//			/* Sliding submenu (clipTrans) configuration */
//			'clipTrans':{
//				'duration':1000,
//				'frames':15,
//				'transition':'north-to-south'
//			},
			
			// Background item
			'background-item':{
				'width':725, 'height':25, 'left':0, 'top':0,
				'class':'macosx_container'
			},

			1:{
				'content':'<a href="http://www.fsm5k.org/index.html">Home</a>',
				'width':100, 'height':25, 'offsetLeft':0, 'top':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			},
//			2:{
//				'content':'<a href="http://www.fsm5k.org/luncheon.html">Survivor Luncheon</a>',
//				'width':125, 'height':25, 'offsetLeft':100, 'offsetTop':0,
//				'class':'macosx',
//				'class_rollover':'macosx_rollover'
//			},	
			2:{
				'content':'<a href="http://www.fsm5k.org/forms.html">Online Forms</a>',
				'width':100, 'height':25, 'offsetLeft':100, 'offsetTop':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			},	
			3:{
				'content':'<a href="http://www.fsm5k.org/course.html">Race Course</a>',
				'width':100, 'height':25, 'offsetLeft':100, 'offsetTop':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			},	
			4:{
				'content':'<a href="http://www.fsm5k.org/parking.html">Parking</a>',
				'width':100, 'height':25, 'offsetLeft':100, 'offsetTop':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			},	
			5:{
				'content':'<a href="http://www.fsm5k.org/updates.html">Updates</a>',
				'width':100, 'height':25, 'offsetLeft':100, 'offsetTop':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			},

			6:{
				'content':'<a href="http://www.fsm5k.org/sponsors.html">Sponsors</a>',
				'width':100, 'height':25, 'offsetLeft':100, 'offsetTop':0,
				'class':'macosx',
				'class_rollover':'macosx_rollover'
			}
		} 	
	};
	// End base menu

	// Activate and build menu
	var slidingMenu = new WebDDM('menu', menu);
}


