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 HIGHLIGHTED = {
	border:1,
	shadow:2,
	color:{
		border:"#666666",
		shadow:"#DBD8D1",
		bgON:"#FFEEEE",
		bgOVER:"#B6BDD2"
	},
	css:{
		ON:"clsCMHighlightedOn",
		OVER:"clsCMHighlightedOver"
	}
};

var HIGHLIGHTED_PREFIX = '<img src="images/pic.gif" width="5" height="5" align="absmiddle" /> ';
var HIGHLIGHTED_SUFFIX = '';

function highlightItem(items) {
	for (var i = 1; i < items.length; i++)
		if (items[i]) {
			if (!items[i].format)
				items[i].format = {};

			items[i].format.style = STYLE;

			if (items[i].url && location.href.indexOf(items[i].url) >= 0) {
				items[i].format.style = HIGHLIGHTED;
				items[i].code = HIGHLIGHTED_PREFIX + items[i].code + HIGHLIGHTED_SUFFIX;
			}
			
			if (items[i].sub)
				items[i].sub = highlightItem(items[i].sub);
		}	

	return items;
}

var MENU_ITEMS = [
  {pos:[10,10], itemoff:[21,0], leveloff:[0,99], style:STYLE, size:[22,120]},
	{code:"Principal", "url":"index.html"},
//	{code:"Amigos", "url":"amigos.html"},
	{code:"El baul", "url":"elbaul.html"},
    {code:"Entretenimiento",
        sub:[
                {},
                {code:"Texto", "url":"chistes/textos.html"},
                {code:"Fotos", "url":"chistes/fotos.html"},
                {code:"Videos", "url":"chistes/videos.html"}
            ]
        },
	{code:"CV", "url":"cv.html"},
	{code:"Hattrick", "url":"hattrick.html"},
	{code:"Docs", "url":"docs.html"},
	{code:"Proyectos", "url":"proyectos.html"},
	{code:"Papers","url":"papers.html"},
	{code:"Blog", "url":"http://blog.makam.org"},
	{code:"FIng", "url":"fing.html"},
	{code:"Curso Intro.","url":"curso_introductorio.html"},
	{code:"Links", "url":"links.html"},
	{code:"Contacto", "url":"contacto.html"},
//	{code:"GuestBook", "url":"librodevisitas/"},
  {code:"LinkedIn", "target" : "_blank", "url": "http://www.linkedin.com/in/delriego"}
];

MENU_ITEMS = highlightItem(MENU_ITEMS);