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

    oDataMenu.frames = 0

    //Menu properties   
    oDataMenu.pxBetween=0
    oDataMenu.fromLeft=0
    oDataMenu.fromTop=111  
    oDataMenu.rows=0
    oDataMenu.menuPlacement=0

    oDataMenu.offlineRoot="" 
    oDataMenu.onlineRoot="" 
    oDataMenu.resizeCheck=1 
    oDataMenu.wait=100 
    oDataMenu.fillImg=""
    oDataMenu.zIndex=0

    //Background bar properties
    oDataMenu.useBar=0
    oDataMenu.barWidth="menu" 
    oDataMenu.barHeight="menu" 
    oDataMenu.barClass="dlBar"
    oDataMenu.barX=0 
    oDataMenu.barY=0
    oDataMenu.barBorderX=0
    oDataMenu.barBorderY=0
    oDataMenu.barBorderClass=""

    //Level properties - ALL properties have to be spesified in level 0
    oDataMenu.level[0]=new cm_makeLevel() //Add this for each new level
    oDataMenu.level[0].width=115
    oDataMenu.level[0].height=25 
    oDataMenu.level[0].regClass="dlLevel0"
    oDataMenu.level[0].overClass="dlLevel0over"
    oDataMenu.level[0].borderX=3
    oDataMenu.level[0].borderY=3
    oDataMenu.level[0].borderClass="dlLevel0border"
    oDataMenu.level[0].align="right" 
    oDataMenu.level[0].offsetX=0
    oDataMenu.level[0].offsetY=0
    oDataMenu.level[0].rows=0
    oDataMenu.level[0].arrow=0
    oDataMenu.level[0].arrowWidth=0
    oDataMenu.level[0].arrowHeight=0

    //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
    oDataMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
    oDataMenu.level[1].width=oDataMenu.level[0].width-2
    oDataMenu.level[1].height=22
    oDataMenu.level[1].regClass="dlLevel1"
    oDataMenu.level[1].overClass="dlLevel1over"
    oDataMenu.level[1].borderX=1
    oDataMenu.level[1].borderY=1
    oDataMenu.level[1].align="right" 
    oDataMenu.level[1].offsetX=-(oDataMenu.level[0].width-2)/2+20
    oDataMenu.level[1].offsetY=0
    oDataMenu.level[1].borderClass="dlLevel1border"

    //EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
    oDataMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
    oDataMenu.level[2].width=150
    oDataMenu.level[2].height=20
    oDataMenu.level[2].offsetX=0
    oDataMenu.level[2].offsetY=0
    oDataMenu.level[2].regClass="dlLevel1"
    oDataMenu.level[2].overClass="dlLevel1over"
    oDataMenu.level[2].borderClass="dlLevel1border"

    /******************************************
    Menu item creation:
    myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
    *************************************/
	oDataMenu.makeMenu('top0','','Station Home Page','/geo.shtml?location=9418767','_self','','','','','','','','','')
	oDataMenu.makeMenu('top1','','Station Information','/station_info.shtml?stn=9418767 North Spit, CA','_self','','','','','','','','','')
    oDataMenu.makeMenu('top2','','<center>Tide / Water Level&nbsp;&nbsp; Data&nbsp;</center>','','_self','','30','','','','','','','')
        oDataMenu.makeMenu('sub20','top2','Preliminary Data','/data_menu.shtml?stn=9418767 North Spit, CA&type=Tide+Data','_self','','','','','','','','','')
        oDataMenu.makeMenu('sub21','top2','Verified Data','/data_menu.shtml?stn=9418767 North Spit, CA&type=Historic+Tide+Data','_self','','','','','','','','','')
        oDataMenu.makeMenu('sub22','top2','Extremes','/data_menu.shtml?stn=9418767 North Spit, CA&type=Extremes','_self','','','','','','','','','')
    oDataMenu.makeMenu('top3','','Tide Predictions','/noaatidepredictions/NOAATidesFacade.jsp?Stationid=9418767','_self','','','','','','','','','')
    oDataMenu.makeMenu('top4','','Current Data','','_self','','','','','dlLevel3','dlLevel3','','','1')
    /* oDataMenu.makeMenu('top5','','Current Predictions','','_self','','','','','dlLevel3','dlLevel3','','','1') */
    oDataMenu.makeMenu('top6','','Meteorological Observations','/data_menu.shtml?stn=9418767 North Spit, CA&type=Meteorological+Observations','_self','',30,'','','','','','','')
    /* oDataMenu.makeMenu('sub60','top6','Sensor Information','','_self','',30,'','','','','','','' ) */
    oDataMenu.makeMenu('top7','','Conductivity','','_self','','','','','dlLevel3','dlLevel3','','','1')
    oDataMenu.makeMenu('top8','','PORTS','','_self','','','','','dlLevel3','dlLevel3','','','1')
    oDataMenu.makeMenu('top9','','Operational Forecast System','','_self','','','','','dlLevel3','dlLevel3','','','1')
    oDataMenu.makeMenu('top10','','Bench Mark Sheets','/data_menu.shtml?stn=9418767 North Spit, CA&type=Bench Mark Sheets','_self','','','','','','','','','')
    oDataMenu.makeMenu('top11','','Datums','/data_menu.shtml?stn=9418767 North Spit, CA&type=Datums','_self','','','','','','','','','')
    oDataMenu.makeMenu('top12','','Harmonic Constituents','/data_menu.shtml?stn=9418767 North Spit, CA&type=Harmonic Constituents','_self','',30,'','','','','','','')
    oDataMenu.makeMenu('top13','','Sea Level Trends','','_blank','','','','','dlLevel3','dlLevel3','','','1')

    //Leave this line - it constructs the menu
    oDataMenu.construct()	
    