// Styles
var STYLE = {
	border:2,			// item's border width, pixels; zero means "none"
	shadow:2,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"white",	// color of the item border, if any
		shadow:"grey",	// color of the item shadow, if any
		bgON:"#85C226",		// background color for the items
		bgOVER:"#E1E6D9"	// 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
	}



};

// Menu structure

var MENU_ITEMS = [
	{pos:[100,140], itemoff:[0,149], leveloff:[21,5], style:STYLE, size:[22,150]},
	{code:"HOME", url:"http://www.invenis.net/index.php",
		sub:[
			 {itemoff:[21,0]},
			 ]
	},
		{code:"Topics", url:"http://www.invenis.net/articles.php",
		sub:[
			{itemoff:[21,0]},
			{code:"Language & Transl.", "url":"http://www.invenis.net/language.php"},
			{code:"Philosophy & Religion", "url":"http://www.invenis.net/philosophy.php"},
			{code:"Literature", "url":"http://www.invenis.net/literature.php"},
			{code:"History & Society", "url":"http://www.invenis.net/history.php"},
			{code:"Bioethics", "url":"http://www.invenis.net/bioethics.php"},
			{code:"Education", "url":"http://www.invenis.net/education.php"},
			{code:"Business", "url":"http://www.invenis.net/business.php"},

		]
	},

			{code:"Language Resources", url:"http://www.invenis.net/resources/index.php",
		sub:[
			{itemoff:[21,0]},

]
	},
	
		

	
	

			{code:"About Rafael Guzmán", url:"http://www.invenis.net/rguzman.php",
		sub:[
			{itemoff:[21,0]},


		]
	}
];




