// --------------------------------------------------------------------------------
function seccio(nom) {
this._nom = nom;
return(this);
}
var ps = new Object()
ps._nom = ""
// --------------------------------------------------------------------------------
// Cap seccio pot comen&ccedil;ar amb n&uacute;mero
//
ps.index = new seccio("P&agrave;gina&nbsp;Principal");
ps.historia = new seccio("Hist&ograve;ria");
ps.historia.publicacions = new seccio("&nbsp;&nbsp;Publicacions");
ps.historia.escuts = new seccio("&nbsp;&nbsp;Escuts");
ps.historia.himne = new seccio("&nbsp;&nbsp;Himne");
ps.historia.cant = new seccio("&nbsp;&nbsp;Cant Esportiu");
ps.historia.noticies = new seccio("&nbsp;&nbsp;Noticies Hist&ograve;riques");
ps.club = new seccio("El Club");
ps.club.junta = new seccio("&nbsp;&nbsp;Junta Directiva");
ps.club.colors = new seccio("&nbsp;&nbsp;Colors Equipaments");
ps.club.camps = new seccio("&nbsp;&nbsp;Els Camps");
ps.equips = new seccio("Els Equips");
ps.equips.primer = new seccio("&nbsp;&nbsp;El Primer Equip");
ps.equips.equipb = new seccio("&nbsp;&nbsp;Equip B");
ps.equips.futbolbase = new seccio("&nbsp;&nbsp;Futbol Base");
ps.equips.veterans = new seccio("&nbsp;&nbsp;Veterans");
ps.fotos = new seccio("Album de Fotos");
ps.fotos.antigues = new seccio("&nbsp;&nbsp;Fotos antigues");
ps.fotos.actuals = new seccio("&nbsp;&nbsp;Fotos actuals");
ps.resultats = new seccio("Resultats/Classificació");
ps.resultats.primer = new seccio("&nbsp;&nbsp;El Primer Equip");
ps.resultats.equipb = new seccio("&nbsp;&nbsp;Equip B");
ps.resultats.futbolbase = new seccio("&nbsp;&nbsp;Futbol Base");
ps.resultats.veterans = new seccio("&nbsp;&nbsp;Veterans");

