var root = "/";
var totalNoticias = 4;
var tituloNoticia = new Array();
var linkNoticia = new Array();

tituloNoticia[0] = "Proyecto 'Casas museo en España' ";
linkNoticia[0] = "../noticias/p_casas_museo.htm";

tituloNoticia[1] = "Plan de Vivienda y Rehabilitación 2009-2012";
linkNoticia[1] = "../noticias/vivienda2009_2012.htm";

tituloNoticia[2] = "Actividades del Museo Cerralbo";
linkNoticia[2] = "../noticias/m_cerralbo.htm";

tituloNoticia[3] = "Otras Noticias";
linkNoticia[3] = "../noticias/otras_noticias.htm";


function cargarLateral()
{
	str = "";
	
	str += "<table width='180' height='280' bgcolor='white' border='0' cellpadding='0' cellspacing='0'>";	
	//str += "<tr><td height='0'></td></tr>";
	str += "<tr><td valign='top'>";
	
	
	
	// Inicio Tabla Noticias
	
	str += "<table background='"+root+"img/noticias_fchs.jpg' width='155' height='191' border='0' cellpadding='6' cellspacing='1' bgcolor='#e2e6eb'>";
	str +="<tr><td height='18'></td></tr>";
	str += "<tr><td valign=top>";
		
	str += "<table width='98%' align='center' cellpadding=0>"
	//str += "<tr><td colspan=0 height='0' bgcolor='#ACAFBA'></td></tr>"
	str += "<tr><td colspan=2 height='0'></td></tr>"
	
	for(i=0;i<totalNoticias;i++)
	{

		str += "<tr><td valign=top class='noticia'>· </td><td valign=top>";
		str += "<a href='" + linkNoticia[i] + "' class='noticia'>" + tituloNoticia[i] + "</a><br>";
		str += "</td></tr>";
		str += "<tr><td colspan=0 height='0'></td></tr>";
		//str += "<tr><td colspan=0 height='0' bgcolor='#ACAFBA'></td></tr>";
		str += "<tr><td colspan=0 height='0'></td></tr>";
	}
	str += "<tr><td colspan=0></td></tr>";
	str += "</table>";
	str += "</td></tr></table>";
	// Fin Tabla Noticias
	
	
	str += "</td></tr>";
	str += "<tr><td height='5'></td></tr>";
	str += "<tr><td>";	
	str += "<table width='150' height='46' border='0' cellspacing='0' bgcolor='#D1D5D8'>";
	str += "<tr><td><a href='../fundacion/voluntariado.htm'><img src='http://www.casashistoricas.com/img/voluntariado.jpg' border='0' ></a></td></tr>";
	str += "</table></td></tr>";	
	str += "<tr><td height='5'></td></tr>";	
	str += "<tr><td>";	
	str += "<table width='155' height='46' border='0' cellspacing='0' bgcolor='#D1D5D8'>";
	str += "<tr><td><a href='../jovenes/jovenes.htm'><img src='http://www.casashistoricas.com/img/jovenes.jpg' border='0' ></a></td></tr>";
	str += "</table></td></tr>";	
	str += "<tr><td height='5'></td></tr>";
      str += "<tr><td>";	
	str += "<table width='155' height='46' border='0' cellspacing='0' bgcolor='#D1D5D8'>";
	str += "<tr><td><a href='../fundacion/hazte_miembro.htm'><img src='http://www.casashistoricas.com/img/miembro.jpg' border='0' ></td></tr>";
	str += "</table></td></tr>";
	str += "</table>";	


	lateral.innerHTML = str;
}

