// Archivo JScript
/*
Ext.onReady(function() {
	setTimeout(function(){
        Ext.get('loading').remove();
        Ext.get('loading-mask').fadeOut({remove:true});
        $("#Main").slideDown('slow');
    }, 2000);	
  
});
*/
function contenido(nId){
    switch (nId){
    case 1:
        document.location.href = "index.html";
        break;
    case 2:
        document.location.href = "productos.html";
        break;
    case 3:
        document.location.href = "instalaciones.html";
        break;
    case 4:
        document.location.href = "clientes.html";
        break;
    case 5:
        document.location.href = "cotizador.html";
        break;
    case 6:
        document.location.href = "contacto.html";
        break;
    default:
        alert("Opcion " + nId);
        break;
    }
}