function createjsDOMenu() {
  fixedMenu1 = new jsDOMenu(140, "fixed");
  with (fixedMenu1) {
    addMenuItem(new menuItem("Ventus Freedom", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.ventus_freedom"));
    addMenuItem(new menuItem("Ventus Easy", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.ventus_easy"));
    addMenuItem(new menuItem("Halo Ventus", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.ventus_halo"));
  }
  
  fixedMenu2 = new jsDOMenu(180, "fixed");
  with (fixedMenu2) {
    addMenuItem(new menuItem("Ventus for Pocket PC", "", "/file/Ventus_PPC_english.arm.CAB"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Ventus for SmartPhone", "", "/file/Ventus_SP_english.arm.CAB"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Ventus for Symbian60", "", "/file/VentusS60er70s.SIS"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Ventus for Symbian80", "", "/file/VentusS60er70s.SIS"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Ventus for SymbianUIQ", "", "/file/VentusUIQ.SIS"));
  }

	fixedMenu3 = new jsDOMenu(210, "fixed");
  with (fixedMenu3) {
    addMenuItem(new menuItem("Umum", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.faq#1"));
    addMenuItem(new menuItem("Operator Celular dan Wireles", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.faq#6"));
    addMenuItem(new menuItem("Jenis Handphone", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.faq#12"));
    addMenuItem(new menuItem("Infrastruktur", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.faq#16"));
    addMenuItem(new menuItem("Lain-Lain", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.faq#24"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Setting", "setting"));
  }
  
  fixedMenu3_1 = new jsDOMenu(80, "fixed");
  with (fixedMenu3_1) {
    addMenuItem(new menuItem("GPRS", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.setting_gprs"));
    addMenuItem(new menuItem("PDN", "", "http://www.ventusmobile.com/content/index.php?fuseaction=home.setting_pdn"));
  }

	fixedMenu3.items.setting.setSubMenu(fixedMenu3_1);
  
  var winW;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	 }
	}
	
  fixedMenuBar = new jsDOMenuBar("fixed");
  with (fixedMenuBar) {
    addMenuBarItem(new menuBarItem("Home", "", "","", "http://www.ventusmobile.com"));
    addMenuBarItem(new menuBarItem("Tentang Kami", "", "","", "http://www.ventusmobile.com/content/index.php?fuseaction=home.aboutus"));
    addMenuBarItem(new menuBarItem("Solusi", fixedMenu1));	
    addMenuBarItem(new menuBarItem("Teknologi", "", "","", "http://www.ventusmobile.com/content/index.php?fuseaction=home.technology"));
    addMenuBarItem(new menuBarItem("Download", "", "","", "http://www.ventusmobile.com/content/index.php?fuseaction=home.download"));
    addMenuBarItem(new menuBarItem("Tanya Jawab", fixedMenu3));	
    addMenuBarItem(new menuBarItem("Buku Tamu", "", "","", "http://www.ventusmobile.com/content/index.php?fuseaction=home.guestbook"));
    addMenuBarItem(new menuBarItem("Kontak", "", "","", "http://www.ventusmobile.com/content/index.php?fuseaction=home.contact"));
    moveTo(winW/2 - 350, 0);
  }
  

}