BLANK_IMAGE = '/cdn/images/b.gif';

var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	css:{
		ON:"clsCMOn",		// CSS class for items
		OVER:"clsCMOver"	// CSS class  for item which is under mouse
	}
};

var STYLE_DROP = {
		border:0,			// item's border width, pixels; zero means "none"
		shadow:0,			// item's shadow size, pixels; zero means "none"
		backgroundColor: "#4a4a4a",
		color:{
			shadow:"yellow"	// color of the item shadow, if any
		},		
		css:{
			ON:"smclsCMOn",		// CSS class for items
			OVER:"smclsCMOver"	// CSS class  for item which is under mouse
		}
	};

var MENU_ITEMS = [
	{pos:[10,170], leveloff:[21,0], style:STYLE, image:null},
	{code:"The Academy", url:"/", 
		 size:[22,150],
	     arrow: '/cdn/images/arrow.png',
	     sub: [
	           {style: STYLE_DROP, size:[22,180], leveloff:[24,15], itemoff:[22,0]},
			   {code:"Our Story", url:"/about"},
			   {code:"Meet The Coaches", url: "/coaches"},
			   /*{code:"Join The Team", url:"/jobs"},*/
			   {code:"Contact Us", url:"/contact"}
	     ]
	},
	{code:"Programs", url: "/programs",
		size:[22,115],
		itemoff:[0,150],
		arrow: '/cdn/images/arrow.png',
		image:null,
		sub:[
		    {style: STYLE_DROP, size:[22,160], leveloff:[24,15], itemoff:[22,0]},
			{code:"Mini Tennis", url:"/programs/mini"},
			{code:"Beginner Tennis", url: "/programs/beginners"},
			{code:"Junior Tennis", url: "#",
				size:[22,160],
				arrow: '/cdn/images/arrow.png',
				sub:[
				    {leveloff:[0,140], itemoff:[22,0]},
					{code:"Intermediate", url:"/programs/juniors/intermediate"},			
					{code:"Advanced", url:"/programs/juniors/advanced"},			
					{code:"Tournament", url:"/programs/juniors/tournament"}
				]
			},
			{code:"Adult Tennis", url: "/programs/adult"},
			{code:"Private Lessons", url: "/programs/privateLessons"},
			/*{code:"Summer Camps", url: "/summer_camps"}*/
			]
	},
	{code:"Schedule", size:[22,110], itemoff:[0,115],
		arrow: '/cdn/images/arrow.png',
		image:null,
		sub:[
		    {style: STYLE_DROP, size:[22,180], leveloff:[24,15], itemoff:[22,0]},
			/*{code:"Summer Schedule", url:"/summer_camps"},*/
			{code:"Fall Schedule", url:"/schedule"},
			{code:"School Year Calendar", url:"/year_calendar"}
		]
	},
	/*{code:"Club House", url: "/clubhouse", size:[22,130], itemoff:[0,115],
		arrow: '/cdn/images/arrow.png',
		image:null,
		sub:[
		    {style: STYLE_DROP, size:[22,180], leveloff:[24,15], itemoff:[22,0]},
			{code:"Meet Our Champions", url:"/champions"},
			{code:"Parent's Corner", url: "/parents"},
			{code:"Player's Lounge", url: "/players"},
			{code:"Coach's Box", url: "/coach/home"},
			]
	},*/
	{code:"Admissions", url: "/admissions", size:[22,130], itemoff:[0,130]},
	{code:"Online Store", url: "/onlineshop", size:[22,145], itemoff:[0,130]},
	{code:"Gallery", url: "", 
		size:[22,115],
		itemoff:[0,140],
		arrow: '/cdn/images/arrow.png',
		image:null,
		sub:[
		    {style: STYLE_DROP, size:[22,140], leveloff:[24,15], itemoff:[22,0]},
			{code:"Video Gallery", url:"/videos"},
			{code:"Photo Gallery", url: "/photos"}
		]
	}

];
