// Path to images used in the menu.

dsMenuImagePath	= "images/";  

//=======================================================================================//
// Menu's and their items                                                                //
//=======================================================================================//

var menuSelf = new DSmenu;
menuSelf.add(new DSmenuItem("Introduction", "b-introduction.php", null));
menuSelf.add(new DSmenuItem("Principles of studying", "b-principles.php", null));
menuSelf.add(new DSmenuItem("Self-management skill levels", "b-skill.php", null));
menuSelf.add(new DSmenuItem("Self-assessment", "b-self.php", null));
menuSelf.add(new DSmenuItem("FAQ", "skills-questions-8.php", null));
menuSelf.add(new DSmenuItem("Downloads and exercises", "b-extra.php", null));
menuSelf.add(new DSmenuItem("Links", "b-links.php", null));

var menuManagement = new DSmenu;
menuManagement.add(new DSmenuItem("Introduction", "g-introduction.php", null));
menuManagement.add(new DSmenuItem("Principles of management", "g-principles.php", null));
menuManagement.add(new DSmenuItem("Management skill levels", "g-skill.php", null));
menuManagement.add(new DSmenuItem("Self-assessment", "g-self.php", null));
menuManagement.add(new DSmenuItem("FAQ", "skills-questions-7.php", null));
menuManagement.add(new DSmenuItem("Downloads and exercises", "g-extra.php", null));
menuManagement.add(new DSmenuItem("Links", "g-links.php", null));

var menuListening = new DSmenu;
menuListening.add(new DSmenuItem("Introduction", "d-introduction.php", null));
menuListening.add(new DSmenuItem("Principles of listening", "d-principles.php", null));
menuListening.add(new DSmenuItem("Listening skill levels", "d-skill.php", null));
menuListening.add(new DSmenuItem("Self-assessment", "d-self.php", null));
menuListening.add(new DSmenuItem("FAQ", "skills-questions-6.php", null));
menuListening.add(new DSmenuItem("Downloads and exercises", "d-extra.php", null));
menuListening.add(new DSmenuItem("Links", "d-links.php", null));

var menuReading = new DSmenu;
menuReading.add(new DSmenuItem("Introduction", "c-introduction.php", null));
menuReading.add(new DSmenuItem("Principles of reading", "c-principles.php", null));
menuReading.add(new DSmenuItem("Reading skill levels", "c-skill.php", null));
menuReading.add(new DSmenuItem("Self-assessment", "c-self.php", null));
menuReading.add(new DSmenuItem("FAQ", "skills-questions-4.php", null));
menuReading.add(new DSmenuItem("Downloads and exercises", "c-extra.php", null));
menuReading.add(new DSmenuItem("Links", "c-links.php", null));

var menuPresentation = new DSmenu;
menuPresentation.add(new DSmenuItem("Introduction", "f-introduction.php", null));
menuPresentation.add(new DSmenuItem("Principles of presenting", "f-principles.php", null));
menuPresentation.add(new DSmenuItem("Presentation skill levels", "f-skill.php", null));
menuPresentation.add(new DSmenuItem("Self-assessment", "f-self.php", null));
menuPresentation.add(new DSmenuItem("FAQ", "skills-questions-1.php", null));
menuPresentation.add(new DSmenuItem("Downloads and exercises", "f-extra.php", null));
menuPresentation.add(new DSmenuItem("Links", "f-links.php", null));

var menuWriting = new DSmenu;
menuWriting.add(new DSmenuItem("Introduction", "e-introduction.php", null));
menuWriting.add(new DSmenuItem("Principles of writing", "e-principles.php", null));
menuWriting.add(new DSmenuItem("Writing skill levels", "e-skill.php", null));
menuWriting.add(new DSmenuItem("Self-assessment", "e-self.php", null));
menuWriting.add(new DSmenuItem("FAQ", "skills-questions-2.php", null));
menuWriting.add(new DSmenuItem("Downloads and exercises", "e-extra.php", null));
menuWriting.add(new DSmenuItem("Links", "e-links.php", null));

var menuResearch = new DSmenu;
menuResearch.add(new DSmenuItem("Introduction", "a-introduction.php", null));
menuResearch.add(new DSmenuItem("Principles of research", "a-principles.php", null));
menuResearch.add(new DSmenuItem("Research skill levels", "a-skill.php", null));
menuResearch.add(new DSmenuItem("Self-assessment", "a-self.php", null));
menuResearch.add(new DSmenuItem("FAQ", "skills-questions-3.php", null));
menuResearch.add(new DSmenuItem("Downloads and exercises", "a-extra.php", null));
menuResearch.add(new DSmenuItem("Links", "a-links.php", null));

// Change the default width for menuJS

//=======================================================================================//
// Menubar and it's buttons                                                              //
//=======================================================================================//

var myBar = new DSmenuBar;
myBar.add(new DSmenuButton("Home", "index.php", null)); 
myBar.add(new DSmenuButton("Research", null, null, menuResearch));	//a
myBar.add(new DSmenuButton("Study & Self-Management", null, null, menuSelf)); //b
myBar.add(new DSmenuButton("Reading", null, null, menuReading));  //c
myBar.add(new DSmenuButton("Listening", null, null, menuListening));  //d
myBar.add(new DSmenuButton("Writing", null, null, menuWriting)); //e
myBar.add(new DSmenuButton("Presentation", null, null, menuPresentation)); //f
myBar.add(new DSmenuButton("Team & Project Management", null, null, menuManagement));  //g

