BLANK_IMAGE = '../images/blank.gif';

var HEADER_STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		bgON:"white",		// background color for the items
		bgOVER:"#B6BDD2"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"CoolMenuHeaderOn",		// CSS class for items
		OVER:"CoolMenuHeaderOver"	// CSS class  for item which is under mouse
	}
};

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#666666",	// color of the item border, if any
		bgON:"white",		// background color for the items
		bgOVER:"#B6BDD2"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"CoolMenuOn",		// CSS class for items
		OVER:"CoolMenuOver"	// CSS class  for item which is under mouse
	}
};

var MENU_ITEMS = [
	{pos:[100,10], itemoff:[0,149], leveloff:[29,0], style:HEADER_STYLE, size:[30,150]},
	{code:"Home",url:"Home.aspx"
	},
	{code:"Products",
		sub:[
			{itemoff:[21,0], style:STYLE, size:[22,150]},
			{code:"Sync in a Blink", url:"SyncInABlink.aspx", sub:[{leveloff:[0,99]}] },
			{code:"Links in a Blink", url:"LinksInABlink.aspx", sub:[{leveloff:[0,99]}]}
		]	
	},
	{code:"Documentation",
		sub:[
			{itemoff:[21,0], style:STYLE, size:[22,150]},
			{code:"Sync in a Blink", url:"SyncInABlink_Documentation.aspx", sub:[{leveloff:[0,99]}]},
			{code:"Links in a Blink", url:"LinksInABlink_Documentation.aspx", sub:[{leveloff:[0,99]}]},
		]	
	},
	{code:"Forums", url:"Forums.aspx", sub: [ {itemoff:[21,0]} ]
	}
];
