
function MENU(nom,URL,target){
	this.nom = nom;
	this.URL = URL;
	this.target = target;
}

var seccio_1 = new Array() 
seccio_1[0] = new MENU('Presentaci&oacute;n','index.htm','_self');

var seccio_2 = new Array() 
seccio_2[0] = new MENU('Presentaci&oacute;n','../cast/presentacion.htm','_self');
seccio_2[1] = new MENU('Pol&iacute;tica de calidad','../cast/politica_calidad.htm','_self'); 
seccio_2[2] = new MENU('Puntos fuertes','../cast/puntos_fuertes.htm','_self'); 
seccio_2[3] = new MENU('Acreditaciones','../cast/acreditaciones.htm','_self'); 
seccio_2[4] = new MENU('Referencias','../cast/instalaciones_realizadas.htm','_self'); 

var seccio_3 = new Array() 
seccio_3[0] = new MENU('Proyectos de ingenier&iacute;a','/actuacio1.htm','_self');
seccio_3[1] = new MENU('Certificaciones','/actuacio2.htm','_self');
seccio_3[2] = new MENU('Instalaciones','/actuacio3.htm','_self');
seccio_3[3] = new MENU('Mantenimiento preventivo y correctivo','/actuacio4.htm','_self');
seccio_3[4] = new MENU('Instalaciones realizadas','/actuacio5.htm','_self');

var seccio_4 = new Array() 
seccio_4[0] = new MENU('Presentaci&oacute;','../cat/presentacion.htm','_self');
seccio_4[1] = new MENU('Pol&iacute;tica de qualitat','../cat/politica_calidad.htm','_self'); 
seccio_4[2] = new MENU('Punts forts','../cat/puntos_fuertes.htm','_self'); 
seccio_4[3] = new MENU('Acreditacions','../cat/acreditaciones.htm','_self'); 
seccio_4[4] = new MENU('Refer&egrave;ncies','../cat/instalaciones_realizadas.htm','_self'); 


function menu_horitzontal(seccio){
	document.write('<table border=0 cellspacing=0 cellpadding=0 style=\'margin: 0px 0px 0px 0px \'>');
	for (i=0;i<seccio.length;i++) {
        document.writeln("<tr><td class=\'menu_horitzontal\'><a href=\'" + seccio[i].URL + "\' target=\'" + seccio[i].target + "\'  class=\'menu_hor_hover'>" + seccio[i].nom + "</a></td></tr>");          
     } 
	document.write('</table>'); 
}

