function createjsDOMenu() {
  mainMenu2 = new jsDOMenu("auto", "jsdomenudiv", "fixed", false);
  with (mainMenu2) {
    addMenuItem(new menuItem("Yoga Therapy", "", "code:window.open('servicesbanner.html', 'banner');window.open('therapy.html', 'main');"));
    addMenuItem(new menuItem("Yoga and Meditation Lessons", "", "code:window.open('servicesbanner.html', 'banner');window.open('lessons.html', 'main');"));
    addMenuItem(new menuItem("Yoga at Work", "", "code:window.open('servicesbanner.html', 'banner');window.open('work.html', 'main');"));
	addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Workshops", "", "code:window.open('servicesbanner.html', 'banner');window.open('workshops.htm', 'main');"));
	addMenuItem(new menuItem("Health Retreat", "", "code:window.open('servicesbanner.html', 'banner');window.open('retreat.html', 'main');"));
  }
  
    mainMenu3 = new jsDOMenu("auto", "jsdomenudiv", "fixed", false);
  with (mainMenu3) {
    addMenuItem(new menuItem("Introduction & Concept", "", "code:window.open('ayurvedabanner.html', 'banner');window.open('concept.html', 'main');"));
	addMenuItem(new menuItem("-"));
	addMenuItem(new menuItem("Shop Ayurveda", "shop", false));
	addMenuItem(new menuItem("Treatment and Massage", "treatment", false));
	addMenuItem(new menuItem("Ayurveda Cooking", "", "code:window.open('ayurvedabanner.html', 'banner');window.open('cooking.html', 'main');"));
  }
  
    mainMenu4 = new jsDOMenu("auto", "jsdomenudiv", "fixed", false);
  with (mainMenu4) {
	addMenuItem(new menuItem("Application Forms", "application", false));
    addMenuItem(new menuItem("E-mail", "", "mailto:simpute@bellsouth.net"));
	addMenuItem(new menuItem("Frequently Asked Questions", "", "code:window.open('contactbanner.html', 'banner');window.open('faq.html', 'main');"));
  }
  
  	mainMenu6 = new jsDOMenu("auto", "jsdomenudiv", "fixed", false);
  with (mainMenu6) {
	  addMenuItem(new menuItem("Health and Beauty Products", "", "health.html"));
	  addMenuItem(new menuItem("Medicine Box", "", "box.html"));
  }
  
  	mainMenu7 = new jsDOMenu("300", "jsdomenudiv", "fixed", false);
  with (mainMenu7) {
	  addMenuItem(new menuItem("Rejuvenation and Detoxification (Panchkarma) & Therapeutic Massage", "", "code:window.open('ayurvedabanner.html', 'banner');window.open('panch.htm', 'main');"));
	  addMenuItem(new menuItem("Consultation and Health Centers", "", "code:window.open('ayurvedabanner.html', 'banner');window.open('healthcenters.htm', 'main');"));
  }  	
  
  	mainMenu8 = new jsDOMenu("auto", "jsdomenudiv", "fixed", false);
  with (mainMenu8) {
	  addMenuItem(new menuItem("Yoga Therapy", "", "code:window.open('contactbanner.html', 'banner');window.open('form.html', 'main');"));
      addMenuItem(new menuItem("Quick Consultation", "", "code:window.open('contactbanner.html', 'banner');window.open('form2.html', 'main');"));
	  addMenuItem(new menuItem("Health Retreat", "", "code:window.open('contactbanner.html', 'banner');window.open('form3.html', 'main');"));
  }
  
  mainMenu3.items.shop.setSubMenu(mainMenu6);
  mainMenu3.items.treatment.setSubMenu(mainMenu7);
  mainMenu4.items.application.setSubMenu(mainMenu8);
  
  menuBar = new jsDOMenuBar("fixed", false, "jsdomenubardiv", "auto", "auto");
  with (menuBar) {
	addMenuBarItem(new menuBarItem("Home", "", "", "", "code:window.open('yhs.html', 'banner');window.open('home.html', 'main');")); 
    addMenuBarItem(new menuBarItem("About Us", "", "", "", "code:window.open('aboutbanner.htm', 'banner');window.open('about.html', 'main');")); 
	addMenuBarItem(new menuBarItem("Yoga", "", "", "", "code:window.open('yogabanner.html', 'banner');window.open('meditation.html', 'main');"));
    addMenuBarItem(new menuBarItem("Services", mainMenu2));
	addMenuBarItem(new menuBarItem("Ayurveda", mainMenu3));
	addMenuBarItem(new menuBarItem("Contact", mainMenu4));
  }
  
  menuBar.moveTo(0, 0);
}