BLANK_IMAGE = 'images/spacer.gif';

var STYLE1 = {
	border:0,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#999999",	// color of the item border, if any
		shadow:"#999999",	// color of the item shadow, if any
		bgON:"",		// background color for the items
		bgOVER:"#666666"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"menuOn",		// CSS class for items
		OVER:"menuOver"	// CSS class for item which is under mouse
	},
	transition:{
		fadeIn:'progid:DXImageTransform.Microsoft.Fade(duration=0.10)',
		fadeOut:'progid:DXImageTransform.Microsoft.Fade(duration=0.10)'
	}
};

var STYLE2 = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:1,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#999999",	// color of the item border, if any
		shadow:"#999999",	// color of the item shadow, if any
		bgON:"#AAA9A2",		// background color for the items
		bgOVER:"#666666"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"subMenuOn",		// CSS class for items
		OVER:"subMenuOver"	// CSS class  for item which is under mouse
	},
	transition:{
		fadeIn:'progid:DXImageTransform.Microsoft.Fade(duration=0.3)',
		fadeOut:'progid:DXImageTransform.Microsoft.Fade(duration=0.3)'
	}
};

var MENU_ITEMS = [
	{pos:['relative'], dynamic:true, delay:[200,600], itemoff:[0,180], leveloff:[20,0], style:[STYLE1, STYLE2], size:[20,180]},
	{code:"Introduction", url:"index.htm"},
	
	{code:"The Camdeboo Eco Estate", url:"about.htm",
	sub:[
			{"size":[20,180], itemoff:[20,0]},
			{code:"About The Eco Estate", url:"about.htm"},
			{code:"The Camdeboo Lifestyle", url:"lifestyle.htm"},
			{code:"Camdeboo Eco Estate Map", url:"maps.htm"},
		]
	},
	
{code:"Residential Development", url:"residential.htm",
	sub:[
			{"size":[20,180], itemoff:[20,0]},
			{code:"About The Development", url:"residential.htm"},
			{code:"Architecture", url:"architecture.htm"},
		]
	},
	
	{code:"History & Attractions", url:"area.htm"
	},
	
	{code:"Contact", url:"contact.htm"
	}
];

