// 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=\"plan_maestro.html\" class=\"tituloBoton\">Plan Maestro de Transporte</a></td>";
		html += "    <td class=\"a2\"></td>";
		//html += "    <td height=\"16\" align=\"center\" bgcolor=\"" + f_color(indice_menu,2) + "\"><a href=\"infraestructura_transporte.html\" class=\"tituloBoton\">Proyectos Infraestructura de Transporte</a></td>";
		//html += "    <td class=\"a2\"></td>";
		html += "    <td height=\"16\" align=\"center\" bgcolor=\"" + f_color(indice_menu,2) + "\"><a href=\"indicadores_movilidad.html\" class=\"tituloBoton\">Indicadores de Movilidad </a></td>";
		html += "    <td class=\"a2\"></td>";
		//html += "    <td height=\"16\" align=\"center\"  bgcolor=\"" + f_color(indice_menu,3) + "\"><a href=\"estudios_2009_2010.html\" class=\"tituloBoton\">Estudios 2009 -2010</a></td>";
		//html += "    <td style=\"background-image: url(" + path + "img/a_2.gif)\"><img src=\"" + path + "img/spacer.gif\" alt=\"spacer\" width=\"1\" height=\"1\" /></td>";
		//html += "    <td height=\"16\" align=\"center\"  bgcolor=\"" + f_color(indice_menu,4) + "\"><a href=\"plan_maestro.html#\" class=\"tituloBoton\">Comité Usos de Suelo </a></td>";
		html += "    </tr>";
		html += "  <tr>";
		html += "    <td colspan=\"5\" class=\"a1\"></td>";
		html += "  </tr>";
		html += "</table>";
		document.getElementById("men_sup_interior").innerHTML = html;
	}
