BLANK_IMAGE = '../menu/images/b.gif';

var STYLE = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#330033",	// color of the item border, if any
		shadow:"",	// color of the item shadow, if any
		bgON:"#133F88",		// background color for the items
		bgOVER:"#B2B9E5"	// 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 STYLE1 = {
	border:1,			// item's border width, pixels; zero means "none"
	shadow:0,			// item's shadow size, pixels; zero means "none"
	color:{
		border:"#330033",	// color of the item border, if any
		shadow:"",	// color of the item shadow, if any
		bgON:"#0033FF",		// background color for the items
		bgOVER:"#3399FF"	// background color for the item which is under mouse right now
	},
	css:{
		ON:"clsNulo",		// CSS class for items
		OVER:"clsNulo"	// CSS class  for item which is under mouse
	}
};

getIdioma();
menu = new Array;

//IDIOMAS DEL MENU
if (lang == "esp"){
	menu = ["GRUPO MB","Presentaci&oacute;n","Empresas"];
}

else if (lang == "ger"){
	menu = ["MB-GRUPPE","Pr&auml;sentation","Firmen"];
}

else if (lang == "frc"){
	menu = ["GROUPE MB","Pr&eacute;sentation","Entreprises"];
}

else if (lang == "eng"){
	menu = ["GROUP MB","Presentation","Companies"];
}

else if (lang == "ita"){
	menu = ["GRUPPO MB","Presentazione","Piante"];
}

else if (lang == "eus"){
	menu = ["MB Taldea","Aurkezpena","Enpresak"];
}

var MENU_MBGROUP = [
	{pos:[170,300], itemoff:[0,99], leveloff:[19,50], style:STYLE, size:[22,100]},
	{code:menu[0],url:'html/mbPresentacion.html?lang='+lang,
		sub:[
			{itemoff:[25,0], size:[20,120]},
			{code:menu[1], url:'html/mbPresentacion.html?lang='+lang,
				sub:[
				]
			},
			{code:menu[2], url:'html/mbEmpresas.html?lang='+lang,
				sub:[
				]
			}
		]
	},
];

