window.onload = function() {
	buildMenu();
	buildHeader();
	buildFooter();
	openOnLoad();
}

function buildMenu() {
	var menu = new Array();
	
	menu[0] = new Array();
	menu[0]["label"] = "El documental";
	menu[0]["url"] = "documental.html";

	menu[1] = new Array();
	menu[1]["label"] = "La CIG";
	menu[1]["url"] = "cig.html";

	menu[2] = new Array();
	menu[2]["label"] = "Les 15 \"F\"";
	menu[2]["url"] = "fabrica.html";

	menu[3] = new Array();
	menu[3]["label"] = "Primeres f&agrave;briques confiscades";
	menu[3]["url"] = "incautades.html";

	menu[4] = new Array();
	menu[4]["label"] = "Xarxa d'empreses i tallers";
	menu[4]["url"] = "xarxa_empreses.html";
	
	menu[5] = new Array();
	menu[5]["label"] = "Laboratori de Qu&iacute;mica Org&agrave;nica";
	menu[5]["url"] = "lab_quimica.html";
	
	menu[6] = new Array();
	menu[6]["label"] = "Les condicions laborals";
	menu[6]["url"] = "laborals.html";

	menu[7] = new Array();
	menu[7]["label"] = "Material bèl·lic";
	menu[7]["url"] = "armes.html";

	menu[8] = new Array();
	menu[8]["label"] = "Conflictes de la CIG";
	menu[8]["url"] = "conflictes_cig.html";
	
	menu[9] = new Array();
	menu[9]["label"] = "Els protagonistes";
	menu[9]["url"] = "protagonistes.html";
	
	menu[10] = new Array();
	menu[10]["label"] = "Els historiadors";
	menu[10]["url"] = "experts.html";
	
	menu[11] = new Array();
	menu[11]["label"] = "Nomenclàtor";
	menu[11]["url"] = "nomenclator.html";
	
	menu[12] = new Array();
	menu[12]["label"] = "L'Arxiu MTM";
	menu[12]["url"] = "arxiu_mtm.html";

	menu[13] = new Array();
	menu[13]["label"] = "Fonts documentals";
	menu[13]["url"] = "fontsdocumental.html";
	
	menu[14] = new Array();
	menu[14]["label"] = "Voleu aportar un testimoni?";
	menu[14]["url"] = "testimonis.html";

	var out = '';
	var cur_class = '';
	for (i=0; i<menu.length; i++) {
		if (i == menu_actiu) {
			cur_class = ' class="actiu"';
		}
		else {
			cur_class = '';
		}
		out += '<a href="' + menu[i]['url'] + '"' + cur_class +'>' + menu[i]['label'] + '<span style="float: right"></span></a>' + "\n";
	}

	var elem = document.getElementById('area_menu');
	if (elem != null) {
		elem.innerHTML = out;
	}
}

function buildHeader() {
	var header_text = '';
	//header_text = '<img src="../img/cabecera.gif" align="center">';
	header_text = '<a href ="http://www.tv3.cat/industriadeguerra/documental.html"><img src="img/header.jpg" align="center"></a>';

	var elem3 = document.getElementById('header_menu');
	if (elem3 != null) {
		elem3.innerHTML = header_text;
	}
}

function buildFooter() {
	var footer_tv3 = '';
	footer_tv3 = 	'<table border="0" cellpadding="0" cellspacing="0" width="980" > ' +
						'<tr>' + 
							'<td class="txtPetit">' +
								'<table border="0" cellpadding="0" cellspacing="0" width="100%">' +
									'<tr>' +
										'<td><a href="http://www.ccrtvi.cat" target="_blank"><img src="img/peu_log_ccrtv.gif" style="margin-top: 5px;" alt="Logotip de CCRTV Interactiva" border="0" height="22" width="190"></a></td>' +
										'<td><a href="http://www.tv3.cat" target="_blank"><img src="img/peu_log_tvc.gif" style="margin-top: 5px;" alt="Logotip de Televisiï¿½ de Catalunya" border="0" height="22" width="190"></a></td>' +
										'<td style="text-align: right; color:#ffffff;" width="100%">&copy; 2007 CCRTV Interactiva, S.A. | Televisi&oacute; de Catalunya, S.A.<br><a href="mapaweb.html">Mapa web</a> | <a href="http://www.tv3.cat/rss/" target="_blank"><img alt="RSS" src="img/ico_rss_peu.gif" border="0" height="13" width="13"> RSS</a> | <a href="http://www.tv3.cat/avis" title="Enllaï¿½ a una nova plana" target="_blank">Av&iacute;s legal</a> | <a href="http://www.tv3.cat/iqua" target="_blank">Segell de qualitat</a> | <a href="contacte.html">Contacta</a> <a href="contacte.html"><img src="http://www.tv3.cat/img/tvc/log5430p.gif" alt="Servei d\'Atenci&oacute; a l\'espectador i l\'oient" style="margin-top: 2px;" border="0" height="17" width="43">'
					
	var elem2 = document.getElementById('footer');
	if (elem2 != null) {
		elem2.innerHTML = footer_tv3;
	}
}
