//Extra code to find position:


function findPos(){
  if(bw.ns4){   //Netscape 4
    x = document.layers.layerMenu.pageX
    y = document.layers.layerMenu.pageY
  }else{ //other browsers
    x=0; y=0; var el,temp
    el = bw.ie4?document.all["divMenu"]:document.getElementById("divMenu");
    if(el.offsetParent){
      temp = el
      while(temp.offsetParent){ //Looping parent elements to get the offset of them as well
        temp=temp.offsetParent; 
        x+=temp.offsetLeft
        y+=temp.offsetTop;
      }
    }
    x+=el.offsetLeft
    y+=el.offsetTop
  }
  //Returning the x and y as an array
  return [x,y]
}

pos = findPos()

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=0
//Using the cm_page object to place the menu ----
oCMenu.fromLeft=pos[0]
oCMenu.fromTop=pos[1]
//We also need to "re place" the menu on resize. So:
oCMenu.onresize="pos = findPos(); oCMenu.fromLeft=pos[0]+2; oCMenu.fromTop=pos[1]+2;"

oCMenu.pcheck=1
oCMenu.rows=0
oCMenu.menuPlacement=0
                                                             
oCMenu.offlineRoot="file:///C|/menue/coolmenue/coolmenus/" 
//oCMenu.offlineRoot="" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=100

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth=751
oCMenu.barHeight=22 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""


//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=100
oCMenu.level[0].height=20
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow="arrow.gif"
oCMenu.level[0].arrowWidth=7
oCMenu.level[0].arrowHeight=7
oCMenu.level[0].align="right"


//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=100
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].arrow="arrow.gif"
oCMenu.level[1].arrowWidth=7
oCMenu.level[1].arrowHeight=7
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


//myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 


oCMenu.makeMenu('m22','m16','&nbsp;Home','http://www.imig-institut.de/english/','',132)
oCMenu.makeMenu('m37','m16','&nbsp;News','cgi-bin/db_site.cgi/site_37','',132)
oCMenu.makeMenu('m21','m16','&nbsp;Concept','cgi-bin/db_site.cgi/site_21','',132)
oCMenu.makeMenu('m23','m16','&nbsp;The&nbsp;IMIG&nbsp;team','cgi-bin/db_site.cgi/site_23','',132)
oCMenu.makeMenu('m24','m16','&nbsp;What&nbsp;we&nbsp;offer','','',132)
oCMenu.makeMenu('m27','m16','&nbsp;Indications','cgi-bin/db_site.cgi/site_27','',132)
oCMenu.makeMenu('m28','m16','&nbsp;Target&nbsp;groups','cgi-bin/db_site.cgi/site_28','',132)
oCMenu.makeMenu('m30','m16','&nbsp;Clients','cgi-bin/db_site.cgi/site_30','',132)
oCMenu.makeMenu('m31','m16','&nbsp;Projects','cgi-bin/db_site.cgi/site_31','',132)
oCMenu.makeMenu('m44','m16','&nbsp;Healthcare&nbsp;policy','cgi-bin/db_site.cgi/site_44','',132)
oCMenu.makeMenu('m32','m16','&nbsp;Downloads','cgi-bin/db_site.cgi/site_32','',132)
oCMenu.makeMenu('m20','m22','&nbsp;Sitemap','http://www.imig-institut.de/sitemap_uk.shtml','',68)
oCMenu.makeMenu('m33','m16','&nbsp;Contact&nbsp;us','cgi-bin/db_site.cgi/site_33','',132)
oCMenu.makeMenu('m25','m24','&nbsp;Methods','cgi-bin/db_site.cgi/site_25','',92)
oCMenu.makeMenu('m26','m24','&nbsp;New&nbsp;methods','cgi-bin/db_site.cgi/site_26','',92)



oCMenu.construct()