
// this file is intended to create the whole menu on the left-hand side 
// of the cochrane.org web site. Each line contains an invocation of
// the Node constructor (see "createMenu.js" for details) with the signature 
// Node(<ID you choose yourself>, <ID of the node's parent>, <Displayed name>, <link target>)
//
// Created by Johannes Horstmann (jhorstma@cochrane.de or johorstmann@gmx.de)

new Node(0,null,"", ""); // root node! Do NOT remove ... please!
new Node(1,0,"Inicio", "/index.htm");
new Node(3,0,"Las Revisiones Cochrane", "/reviews/index.htm");
new Node(9,0,"La Biblioteca Cochrane Plus", "http://www.bibliotecacochrane.net/");
new Node(4,0,"Noticias", "/news/index.htm");
new Node(5,0,"Agenda", "/news/workshops.htm");
new Node(6,0,"Recursos de formación", "/resources/training.htm");
new Node(8,0,"Pacientes", "/consumers/index.htm");
new Node(2,0,"Sobre nosotros", "/docs/descrip.htm");


new Node(91,9,"Texto completo", "http://www.bibliotecacochrane.net/");
new Node(92,9,"Press releases", "http://www.cochrane.org/press/releases.htm");
new Node(93,9,"Formación para usuarios", "/resources/clibtrain.htm");

new Node(20,2,"La organizaci&#243;n", "/docs/descrip.htm");
new Node(21,2,"Atenci&#243;n Sanitaria Basada en la Evidencia", "/docs/ebm.htm");
new Node(22,2,"Apoyo", "/docs/newcomersguide.htm#funding");
new Node(23,2,"Nuestro grupo & Centros de la revisi&#243;n", "/contact/index.htm");
new Node(24,2,"Kits de prensa & Fondo doc.", "/press/index.htm");
new Node(25,2,"Colabora", "/docs/involve.htm");
//new Node(26,2,"Jobs", "/jobs/index.htm");
new Node(27,2,"administraci&#243;n", "/admin/index.htm");
new Node (221,27,"CCSG & Grupos consultivos", "/ccsg/");
new Node(28,2,"Contact us", "/contact/index.htm");

new Node(271,27, "Cochrane Manual", "/admin/manual.htm");

new Node(30,3,"Ver los resúmenes", "/reviews/index_es.htm");
//new Node(31,3,"Access The Cochrane Library for full text", "/reviews/clibaccess.htm");
new Node(33,3,"introducci&#243;n", "/reviews/clibintro.htm");
new Node(34,3,"Most visited", "/reviews/top50/top50.htm");

new Node(330,33,"introducci&#243;n", "/reviews/clibintro.htm");
new Node(331,33,"Su impacto", "/reviews/impact/index.htm");
new Node(332,33,"Grupos De la Revisi&#243;n", "/contact/regcrgs.htm");
new Node(333,33,"Colabora", "/docs/involve.htm");

new Node(40,4,"Redacci&#243;n", "/news/index.htm");
new Node(41,4,"Nuevas Revisiones", "/reviews/es/index_new.html");
new Node(45,4,"Boletines", "/newslett/index.htm");
new Node(46,4,"Oportunidades", "/jobs/index.htm");
new Node(47,4,"Listas de la discusi&#243;n", "/admin/maillist.htm");

new Node(51,5,"Callendars", "/news/calendar.htm");
new Node(52,5,"Coloquios", "/colloquia/index.htm");
new Node(53,5,"Talleres", "/news/workshops.htm");

new Node(60,6,"homepage del entrenamiento", "/resources/training.htm");
new Node(61,6,"Para los usuarios", "/resources/clibtrain.htm");
new Node(62,6,"Para autores & RGCs", "/resources/revpro.htm");
new Node(63,6,"Para buscadores manuales", "/resources/hsearch.htm");

//new Node(70,27,"Administrative portal", "/admin/index.htm");
//new Node(71,27,"Procedures & records", "/admin/document.htm");
//new Node(72,27,"Promotion", "/resources/promotion.htm");
//new Node(73,27,"Find people", "/contact/index.htm");
//new Node(74,27,"Discussion lists", "/admin/maillist.htm");
//new Node(75,27,"CCSG & advisory groups", "/ccsg");

new Node(80,8,"CCNet homepage", "/consumers/index.htm");
new Node(81,8,"Consumer roles", "http://www.cochrane.org/consumers/cinc.htm#how");
new Node(82,8,"Colabora", "http://cochrane.org/docs/involve.htm");
//new Node(83,8,"Consumer recruitment", ".htm");





