function createjsDOMenu() {
absoluteMenu1 = new jsDOMenu(220, "absolute", "", true);
  with (absoluteMenu1) {
    addMenuItem(new menuItem("Main Category"));
    addMenuItem(new menuItem("-"));
	addMenuItem(new menuItem(" Airplane Models", "a", "http://theworldmodels.com/para/products/subairplanemeun.php"));
	addMenuItem(new menuItem(" Boat Models", "b", "http://www.theworldmodels.com/para/productcat.php?id=2"));
	addMenuItem(new menuItem(" Accessories", "c", "http://www.theworldmodels.com/para/productcat.php?id=3"));
	addMenuItem(new menuItem(" Car Models", "d", "http://www.theworldmodels.com/para/productcat.php?id=4"));
    addMenuItem(new menuItem("-"));
    addMenuItem(new menuItem("Instruction Manuals", "e", "http://www.theworldmodels.com/para/instruction/instructionmenu.php"));
    addMenuItem(new menuItem("Review or Customer Feebacks", "f", "http://www.theworldmodels.com/para/customerfeeback.php"));
    addMenuItem(new menuItem(" Distributors / Dealers", "g", "http://www.theworldmodels.com/para/dealer/index.php"));
		moveTo(12, 210);
    show();
  }
  //Add icons
  absoluteMenu1.items.a.showIcon("icon2", "icon2");
  absoluteMenu1.items.b.showIcon("icon2", "icon2");
  absoluteMenu1.items.c.showIcon("icon2", "icon2");
  absoluteMenu1.items.d.showIcon("icon2", "icon2");
  
  absoluteMenu1.items.e.showIcon("icon3", "icon1");
  absoluteMenu1.items.f.showIcon("icon3", "icon1");
  absoluteMenu1.items.g.showIcon("icon3", "icon1");
  
}
