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 = ["MATRICI","Empresa","Localizaci&oacute;n","Datos","Referencias","Servicios"];
}

else if (lang == "ger"){
	menu = ["MATRICI","Firma","Lage","Fakten","Referenzen","Service"];
}

else if (lang == "frc"){
	menu = ["MATRICI","Entreprise","Localisation","Don&eacute;es","R&eacute;f&eacute;rences","Services"];
}

else if (lang == "eng"){
	menu = ["MATRICI","Company","Location","Data","References","Services"];
}

else if (lang == "ita"){
	menu = ["MATRICI","Ditta","Ubicazione","Dati","Riferimenti","Servizi"];
}

else if (lang == "eus"){
	menu = ["MATRICI","Enpresea","Kokalekua","Jakingarriak","Erreferentziak","Zerbitzuak"];
}

var MENU_MATRICI = [
	{pos:[328,105], itemoff:[0,99], leveloff:[-18,-209], style:STYLE, size:[22,100]},
	{code:menu[0], url:'html/presentacion.html?lang='+lang,
		sub:[
			{itemoff:[0,105], size:[20,98]},
			{code:menu[1], url:'html/presentacion.html?lang='+lang,
				sub:[
				]
			},
			{code:menu[2], url:'html/localizacion.html?lang='+lang,
				sub:[
				]
			},
			{code:menu[3], url:'html/detalles.html?lang='+lang,
				sub:[
				]
			},
			{code:menu[4], url:'html/aluminio.html?lang='+lang,
				sub:[
				]
			},
			{code:menu[5], url:'html/servDiseno.html?lang='+lang,
				sub:[
				]
			}
		]
	},
];