BLANK_IMAGE = 'images/b.gif';

var LEVEL1 = {
	border:1,			// item's border width, pixels; zero means "none"
	borders:[0,0,0,1],
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"transparent",	// color of the item border, if any
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"transparent",		// background color for the items
		bgOVER:"transparent"	// 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 LEVEL2 = {
	border:0,			// item's border width, pixels; zero means "none"
	borders:[1,1,1,1],
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#B2C1BD",	// color of the item border, if any
		shadow:"#888888",	// color of the item shadow, if any
		bgON:"#FFFFCC",		// background color for the items
		bgOVER:"#FFFFFF"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsCMSubOn",		// CSS class for items
		OVER:"clsCMSubOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{"pos":[12,410], itemoff:[40,0], leveloff:[0,200], style:LEVEL1, "size":[24,199],"arrow":"images/arrow.gif","oarrow":"images/arrow-o.gif","arrsize":[8,6]},
	{code:"Home",url:"default.aspx"},
	{code:"Experience",url:"experience.aspx"},
	{code:"Insight",url:"insight.aspx"},
	{code:"Team",url:"team.aspx",
		sub:[
			{"size":[25,230], "itemoff":[24,0], "leveloff":[0,201], style:LEVEL2},
			{code:"David Taylor",url:"david_taylor.aspx"},
			{code:"Daniel Tate, Jr.",url:"daniel_tate.aspx"},
			{code:"Kimberly Nelson Hill",url:"kimberly_hill.aspx"}
		]
	},
	{code:"Results",url:"results.aspx"},
	{code:"Clients",url:"clients.aspx",
		sub:[
			{"size":[25,230], "itemoff":[24,0], "leveloff":[0,201], style:LEVEL2},
			{code:"Testimonials",url:"testimonials.aspx"}
		]
	},
	{code:"Internships",url:"internship_opportunities.aspx"},
	{code:"Contact Us",url:"contact_us.aspx"}
];