
// 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,"", "../de/"); // root node
new Node(1,0,"Home", "index.htm");
new Node(2,0,"About the GCC");
new Node(3,0,"The Cochrane Collaboration");
new Node(4,0,"The Cochrane Library");
new Node(5,0,"Training resources");
new Node(6,0,"Events");
new Node(7,0,"Homepage in German", "../de/index.htm");

new Node(23,2,"About the German Cochrane Centre", "about.htm");
new Node(24,2,"Centre functions", "organisation.htm");
new Node(25,2,"Contact", "contact.htm");
new Node(26,2,"How to find us", "find.htm");
new Node(27,2,"CRGs in Germany", "related.htm");

new Node(31,3,"About the CC", "collaboration.htm");
new Node(33,3,"How to get involved", "involve.htm");
new Node(34,3,"Sources of support", "support.htm");
new Node(35,3,"Go to CC website", "http://www.cochrane.org");
new Node(36,3,"Newsroom", "http://www.cochrane.org/news/index.shtml");

new Node(40,4,"Introduction", "clibintro.htm");
new Node(41,4,"Access & Browse", "clib.htm");
new Node(43,4,"Training & Help", "http://www.cochrane.org/resources/clibtrain.htm");
new Node(44,4,"Go to The Cochrane Library", "http://www.thecochranelibrary.com");

new Node(46,5,"Review Producers", "authorresources.htm");
new Node(47,5,"Training", "training.htm");

new Node(50,6,"Workshops", "workshops.htm");
new Node(51,6,"Cochrane Calendar", "http://www.cochrane.org/news/calendar.shtml");
new Node(52,6,"Cochrane Colloquia", "http://www.cochrane.org/colloquia/index.htm");