function createjsDOMenu() {
  menu1 = new jsDOMenu(185, "", "relative", true);
  with (menu1) {
    addMenuItem(new menuItem("Motorbike Gloves", "homeItem", "gl_mtb.htm"));
    addMenuItem(new menuItem("Cycling Gloves", "homeItem", "gl_cycling.htm"));
    addMenuItem(new menuItem("Weightlifting Gloves", "homeItem", "gl_weight.htm"));
    addMenuItem(new menuItem("Moto Cross Gloves", "homeItem", "gl_moto.htm"));
    addMenuItem(new menuItem("Summer Gloves", "homeItem", "gl_summer.htm"));
    addMenuItem(new menuItem("Ski Gloves", "homeItem", "gl_ski.htm"));
    addMenuItem(new menuItem("Cross Country Gloves", "homeItem", "gl_cross.htm"));
    addMenuItem(new menuItem("Dressing Gloves", "homeItem", "gl_dressing.htm"));
    addMenuItem(new menuItem("Sailing Gloves", "homeItem", "gl_sailing.htm"));
    addMenuItem(new menuItem("Riding Gloves", "homeItem", "gl_riding.htm"));
    addMenuItem(new menuItem("Golf Gloves", "homeItem", "gl_golf.htm"));
    addMenuItem(new menuItem("Boxing Gloves", "homeItem", "gl_boxing.htm"));
    addMenuItem(new menuItem("Goalkeeper Gloves", "homeItem", "gl_goal.htm"));
addMenuItem(new menuItem("-"));    
    addMenuItem(new menuItem("Soccer Balls", "homeItem", "soc_balls.htm"));
addMenuItem(new menuItem("-"));    
    addMenuItem(new menuItem("Leather Garments", "homeItem", "gar_leather.htm"));
    addMenuItem(new menuItem("Cordura Garments", "homeItem", "gar_cordura.htm"));
    addMenuItem(new menuItem("Racing Protections", "homeItem", "gar_protections.htm"));


moveTo(15, 90);
    show();

  }
}
	


