
// 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,"Home", "/index.htm");
new Node(3,0,"Cochrane reviews", "/reviews/index.htm");
new Node(9,0,"The Cochrane Library", "http://thecochranelibrary.com");
new Node(4,0,"News", "/news/index.htm");
new Node(5,0,"Events", "/news/workshops.htm");
new Node(6,0,"Training resources", "/resources/training.htm");
new Node(8,0,"For healthcare users", "/consumers/index.htm");
new Node(2,0,"About us", "/docs/descrip.htm");


new Node(91,9,"Full text", "http://www.thecochranelibrary.com");
new Node(92,9,"Press releases", "http://www.cochrane.org/press/releases.htm");
new Node(93,9,"User training", "/resources/clibtrain.htm");

new Node(20,2,"The organization", "/docs/descrip.htm");
new Node(21,2,"Evidence-based healthcare", "/docs/ebm.htm");
new Node(22,2,"Support", "/docs/newcomersguide.htm#funding");
new Node(23,2,"Review Groups & Centres", "/contact/index.htm");
new Node(24,2,"Press & background docs", "/press/index.htm");
new Node(25,2,"Get involved", "/docs/involve.htm");
//new Node(26,2,"Jobs", "/jobs/index.htm");
new Node(27,2,"Administrative resources", "/admin/index.htm");
new Node (221,27,"Steering Group", "/ccsg/");
new Node(28,2,"Contact us", "/contact/index.htm");

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

new Node(30,3,"Browse free summaries", "/reviews/index.htm");
//new Node(31,3,"Access The Cochrane Library for full text", "/reviews/clibaccess.htm");
new Node(33,3,"About Cochrane Reviews", "/reviews/clibintro.htm");
new Node(34,3,"Most visited", "/reviews/top50/top50.htm");

new Node(330,33,"Introduction", "/reviews/clibintro.htm");
new Node(331,33,"Their impact", "/reviews/impact/index.htm");
new Node(332,33,"Review Groups", "/contact/regcrgs.htm");
new Node(333,33,"Get involved", "/docs/involve.htm");

new Node(40,4,"Newsroom", "/news/index.htm");
new Node(41,4,"New reviews", "/reviews/en/index_new.html");
new Node(45,4,"Newsletters", "/newslett/index.htm");
new Node(46,4,"Opportunities", "/jobs/index.htm");
new Node(47,4,"Discussion lists", "/admin/maillist.htm");

new Node(51,5,"Calendars", "/news/calendar.htm");
new Node(52,5,"Colloquia", "/colloquia/index.htm");
new Node(53,5,"Workshops", "/news/workshops.htm");

new Node(60,6,"Training homepage", "/resources/training.htm");
new Node(61,6,"For Cochrane Library users", "/resources/clibtrain.htm");
new Node(62,6,"For authors & RGCs", "/resources/revpro.htm");
new Node(63,6,"For handsearchers & TSCs", "/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,"The Consumer Network", "/consumers/index.htm");
new Node(81,8,"Consumer roles", "http://www.cochrane.org/consumers/cinc.htm#how");
new Node(82,8,"Getting involved", "http://cochrane.org/docs/involve.htm");
//new Node(83,8,"Consumer recruitment", ".htm");





