var SECCIONACTUAL = "Home";

function MostrarSeccion(opcion){
	if (opcion != SECCIONACTUAL){
		
		if (SECCIONACTUAL != "")
			Element.hide("divSeccion"+SECCIONACTUAL);
		
		switch (opcion){
			case "Home":
				SECCIONACTUAL = "Home";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
			
			case "QuienesSomos":
				SECCIONACTUAL = "QuienesSomos";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
			
			case "Servicios":
				SECCIONACTUAL = "Servicios";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Importaciones":
				SECCIONACTUAL = "Importaciones";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Exportaciones":
				SECCIONACTUAL = "Exportaciones";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Presupuestos":
				SECCIONACTUAL = "Presupuestos";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "OfertasDelMes":
				SECCIONACTUAL = "Ofertas";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Sucursales":
				SECCIONACTUAL = "Sucursales";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "OfertaDelMes":
				SECCIONACTUAL = "OfertaDelMes";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Clientes":
				SECCIONACTUAL = "Clientes";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Login":
				//$("ifrLogin").src = "Login.aspx";
				//SECCIONACTUAL = "Login";
				//window.location.href="Login.aspx";
				//Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			case "Contacto":
				SECCIONACTUAL = "Contacto";
				Element.show("divSeccion"+SECCIONACTUAL);
				break;
				
			default:
				break;
		}
		
		if (SECCIONACTUAL != "")
			$("imgSeccion").src = "Imagenes/tit"+ SECCIONACTUAL +".gif";
			
	}
}




