BLANK_IMAGE = 'images/b.gif';

var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:2,			// 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:"#6289FF",		// background color for the items
		bgOVER:"#014FFF"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:"relative", itemoff:[35,0], leveloff:[0,99], style:STYLE, size:[30,100]},
	{code:"Home", url:"home.htm", 
		sub:[
			{itemoff:[21,0]},
				]
	},
		{code:"About", url:"about.htm", 
		sub:[
			{itemoff:[21,0]},
				]
	},
	{code:"Campaigns", url:"",
			sub:[
			{itemoff:[21,0]},
			{code:"Heavens Angels", url:"HeavensAngels.htm",
				sub:[
					{leveloff:[0,99]},
					]
			},	
		]
		},
	{code:"Events", url:"",
		sub:[
			{itemoff:[35,0]},
			{code:"Focus Sky Dive", url:"skydive.htm",
				sub:[
					{leveloff:[0,99]},
					]
			},	
		]
		},
	{code:"Sponsor", url:"sponsor.htm", 
		sub:[
			{itemoff:[21,0]},
]
			},
	{code:"Contact", url:"contact.htm", 
		sub:[
			{itemoff:[21,0]},
]
	}
];

