BLANK_IMAGE = 'schema/img/blank.gif';

var STYLE = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#C63169",		// background color for the items
		bgOVER:"#C63169"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOnImaged",		// CSS class for items
		OVER:"clsCMOverImaged"	// CSS class  for item which is under mouse
	}
};

var SUB_STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#000000",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"#C63169",		// background color for the items
		bgOVER:"#C63169"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMOnImagedSub",		// CSS class for items
		OVER:"clsCMOverImagedSub"	// CSS class  for item which is under mouse
	}
};


var MENU_ITEMS = [
	{pos:'relative', itemoff:[0,110], leveloff:[30,30], style:STYLE, size:[30,111]},
	{code:"Home", url:"index.php"},
	{code:"Menu", url:"menu.php",
		sub:[
			{style:SUB_STYLE, itemoff:[30,0]},
			{code:"&nbsp;&nbsp;For Adults", url:"menu.php?spgId=iMomMenu"},
			{code:"&nbsp;&nbsp;For Kids", url:"menu.php?spgId=iKidMenu"}
		]
	},
	{code:"Events", url:"calendar.php",
		sub:[
			{style:SUB_STYLE, itemoff:[30,0]},
			{code:"&nbsp;&nbsp;Calendar", url:"calendar.php"},
			{code:"&nbsp;&nbsp;Private Parties", url:"rental.php"},
			{code:"&nbsp;&nbsp;Party FAQs", url:"rentalFAQ.php"},
			
		]
	},
	{code:"About", url:"newsletter.php",
		sub:[
			{style:SUB_STYLE, itemoff:[30,0]},
			{code:"&nbsp;&nbsp;Newsletter", url:"newsletter.php"},
			{code:"&nbsp;&nbsp;Pictures", url:"photos.php"},
			{code:"&nbsp;&nbsp;In The News", url:"press.php"}
			//,
			//{code:"&nbsp;&nbsp;Links", url:"links.php"}
		]
	},
	{code:"Contact", url:"contact.php",
		sub:[
			{style:SUB_STYLE, itemoff:[30,0]},
			{code:"&nbsp;&nbsp;Contact Us", url:"contact.php"},
			{code:"&nbsp;&nbsp;Link To Us", url:"linkToUs.php"},
			{code:"&nbsp;&nbsp;Directions", url:"directions.php"},
			{code:"&nbsp;&nbsp;Jobs", url:"jobs.php"},
		]
	}
];
