BLANK_IMAGE = 'images/b.gif';

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
		shadow:"#DBD8D1",	// color of the item shadow, if any
		bgON:"white",		// background color for the items
		bgOVER:"#B6BDD2"	// 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 MENU_ITEMS = [
	{pos:[260,470], itemoff:[0,99], leveloff:[21,0], style:STYLE, size:[22,100]},
	{code:"Johns Hopkins",
		sub:[
			{itemoff:[21,0]},
			{code:"JH Employees",
				sub:[
					{leveloff:[0,99]},
					{code:"Customer Db", url:"http://johnshopkins.technology-leadership.com/db"},
				]
			},
			{code:"JH Customers",
				sub:[
					{leveloff:[0,99]},
					{code:"RSS Feed", url:"http://johnshopkins.technology-leadership.com/addrss.php"},
					{code:"Buy Books"},
					{code:"Librarian's Database", size:[45,100], url:"http://johnshopkins.technology-leadership.com/libdb"}
				]
			},
			{code:"Press Releases",
				sub:[
					{leveloff:[0,99]},
					{code:"Release1"},
					{code:"Release2"},
					{code:"Release3"}
				]
			}
		]
	},
];


