BLANK_IMAGE = '/images/b.gif'; // CHANGED THIS TO LOOK FOR THIS IMAGE IN THE ROOT DIRECTORY SO THE MENU IN THE FORUM PAGE WORKED PROPERLY. SHAWN.

/* Main menu items. */
var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"",	// color of the item border, if any
		shadow:"",	// color of the item shadow, if any
		bgON:"#fff",		// background color for the items. THIS IS BEING USED!
		bgOVER:"#99CCCC"	// background color for the item which is under mouse right now. THIS IS BEING USED!
	},
	css:{
		ON:"level1On",		// CSS class for items
		OVER:"level1Over"	// CSS class  for item which is under mouse
	}
};

/* Sub menu items. */
var STYLE2 = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#056964",	// color of the item border, if any
		shadow:"",	// color of the item shadow, if any
		bgON:"#005654",		// background color for the items. THIS IS BEING USED!
		bgOVER:"#99CCCC"	// background color for the item which is under mouse right now. THIS IS BEING USED!
	},
	css:{
		ON:"level2On",		// CSS class for items
		OVER:"level2Over"	// CSS class  for item which is under mouse
	}
};

/* MADE ALL URL'S REFERENCE THE ROOT DIRECTORY SO THEY WORK WITH THE FORUM. SHAWN. */
var MENU_ITEMS = [
	{pos:'relative', size:[19,60], itemoff:[0,0], leveloff:[31,0], delay:[40,500], style:[STYLE, STYLE2]},
	{code:'Home',
	 ocode:'Home',
	 url:"/index.php"
	},
	{format:{size:[19,110], itemoff:[0, 75]},
	 code:'About the Club',
	 ocode:'About the Club',
	 url:"/about_club.php",
		sub:[
			{size:[22, 110], itemoff:[21,0], arrsize:[18,18], arrow:'images/arrow.gif', oarrow:'images/arrow_hover.gif'},
			{code:'The Committee',
			 ocode:'The Committee',
			 url:'/about_committee.php'},
			{code:'Member Profiles',
			 ocode:'Member Profiles',
			 url:'/about_profiles.php'},
			{code:'Junior Athletes',
			 ocode:'Junior Athletes',
			 url:'/about_junior.php'},
			{code:'Sponsors',
			 ocode:'Sponsors',
			 url:'/about_sponsors.php'}
		]
	},
	{format:{size:[19,80], itemoff:[0, 125]},
	 code:'Calendar',	 
	 ocode:'Calendar',
	 url:"/calendar.php",
		sub:[
			{size:[22, 165], itemoff:[21,0], arrsize:[18,18], arrow:'images/arrow.gif', oarrow:'images/arrow_hover.gif'},
			{code:'Course Maps',
			 ocode:'Course Maps',
			 url:'calendar_course.php'},
			{code:'Training Tips',
			 ocode:'Training Tips',
			 url:'calendar_tips.php'},	 
		]		 
	},	
	{format:{size:[19,105], itemoff:[0, 95]},
	 code:'Feature Events',
	 ocode:'Feature Events',
	 url:"/feature_events.php"/*,
		sub:[
			{size:[22, 195], itemoff:[22,0], arrsize:[18,18], arrow:'images/arrow.gif', oarrow:'images/arrow_hover.gif'},
			{code:'Mackay Marina Run',
			 ocode:'Mackay Marina Run',
			 url:'feature_marina.php'},
			{code:'Run the Whitsunday Great Walk',
			 ocode:'Run the Whitsunday Great Walk',
			 url:'feature_whitsunday.php'},
			{code:'King of the Mountain',
			 ocode:'King of the Mountain',
			 url:'feature_king.php'},
		  {code:'The Magic Mile',
			 ocode:'The Magic Mile',
			 url:'feature_magic.php'}
		]*/
	}, 
	{format:{size:[19,70], itemoff:[0, 120]},
	 code:'Results',
	 ocode:'Results',
	 url:"/results.php",
		sub:[
			{size:[22, 145], itemoff:[21,0], arrsize:[18,18], arrow:'images/arrow.gif', oarrow:'images/arrow_hover.gif'},
			{code:'Club Race Records',
			 ocode:'Club Race Records',
			 url:'results_records.php'},
			{code:'Run Reports',
			 ocode:'Run Reports',
			 url:'results_reports.php',
		    sub:[
			    {size:[22, 125], itemoff:[22,0], leveloff:[0,150], arrsize:[18,18], arrow:'images/arrow.gif', oarrow:'images/arrow_hover.gif'},
			    /*{code:'2012 Run Reports',
			     ocode:'2012 Run Reports',
			     url:'results_reports_2012.php'},*/
			    {code:'2011 Run Reports',
			     ocode:'2011 Run Reports',
			     url:'results_reports_2011.php'}
			   ]
			},
			{code:'2011 Results',
			 ocode:'2011 Results',
			 url:'results_2011.php'},
		  {code:'2010 Results',
			 ocode:'2010 Results',
			 url:'results_2010.php'},
			{code:'2009 Results',
			 ocode:'2009 Results',
			 url:'results_2009.php'},
			{code:'2008 Results',
			 ocode:'2008 Results',
			 url:'results_2008.php'}
		]
	},
	{format:{size:[19,80], itemoff:[0, 85]},
	 code:'Newsletter',	 
	 ocode:'Newsletter',
	 url:"/newsletter.php"},
	 {format:{size:[19,90], itemoff:[0, 95]},
	 code:'Registration',	 
	 ocode:'Registration',
	 url:"/registration.php"},
	 {format:{size:[19,60], itemoff:[0, 105]},
	 code:'Forum',	 
	 ocode:'Forum',
	 url:"/forum"},
	 {format:{size:[19,90], itemoff:[0, 75]},
	 code:'Contact Us',	 
	 ocode:'Contact Us',
	 url:"/contact_us.php"}
];

