// JavaScript Document

	function f_men_sup_interior(path,indice_menu)
	{
		var html = "";
		if (!path){
			path = "";	
		}
		indice = 1;
		function f_color(indice1,indice2)
		{
			if (indice1 == indice2)
			{
				return "#F2EFE9";
			}else{
				return "";
			}
		}	
		html += "<table width=\"588\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
		html += "  <tr>";
		html += "    <td height=\"16\" align=\"center\" bgcolor=\"" + f_color(indice_menu,1) + "\"><a href=\"encuestas_movilidad.html\" class=\"tituloBoton\">Encuestas de Movilidad</a></td>";
		html += "    <td class=\"a2\"></td>";
		html += "    <td height=\"16\" align=\"center\" bgcolor=\"" + f_color(indice_menu,2) + "\"><a href=\"encuestas_transporte.html\" class=\"tituloBoton\">Encuestas de Transporte Público </a></td>";
		html += "    <td class=\"a2\"></td>";
		html += "    <td height=\"16\" align=\"center\"  bgcolor=\"" + f_color(indice_menu,3) + "\"><a href=\"ortofoto_2007.html\" class=\"tituloBoton\">Ortofoto 2007</a></td>";
		html += "    <td class=\"a2\"></td>";
		html += "    <td height=\"16\" align=\"center\"  bgcolor=\"" + f_color(indice_menu,4) + "\"><a href=\"escenarios.html\" class=\"tituloBoton\">Escenarios de Usos de Suelo </a></td>";
		html += "    </tr>";
		html += "  <tr>";
		html += "    <td colspan=\"7\" class=\"a1\"></td>";
		html += "  </tr>";
		html += "</table>";
		document.getElementById("men_sup_interior").innerHTML = html;
	}
