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

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=95 
oCMenu.fromTop=101
oCMenu.rows=1 
oCMenu.menuPlacement="left"

oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg=""
oCMenu.zIndex=1

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="749"
oCMenu.barHeight="menu" 
oCMenu.barClass="menu"
oCMenu.barX=0 
oCMenu.barY=0
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=150
oCMenu.level[0].regClass="menuLevel0"
oCMenu.level[0].overClass="menuLevel0over"
oCMenu.level[0].borderX=50
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="menuLevel0border"
oCMenu.level[0].offsetX=-3
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=10
oCMenu.level[0].arrowHeight=10
oCMenu.level[0].align="bottom"


//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=200
oCMenu.level[1].height=23
oCMenu.level[1].regClass="menuLevel1"
oCMenu.level[1].overClass="menuLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=5
oCMenu.level[1].borderClass="menuLevel1border"


//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
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=150
oCMenu.level[2].height=23
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=5
oCMenu.level[2].regClass="menuLevel1"
oCMenu.level[2].overClass="menuLevel1over"
oCMenu.level[2].borderClass="menuLevel1border"


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

oCMenu.makeMenu('top0','',' About','#','',46,24,'http://diagnostics.finnzymes.fi/gfx/en_menu_about_off.gif','http://diagnostics.finnzymes.fi/gfx/en_menu_about_on.gif','','',"center")
  oCMenu.makeMenu('top01','top0','News','http://diagnostics.finnzymes.fi/news.html')
  oCMenu.makeMenu('top02','top0','About Finnzymes Diagnostics','http://diagnostics.finnzymes.fi/about.html')
  oCMenu.makeMenu('top03','top0','Legal information','#')
    oCMenu.makeMenu('top031','top03','Warranty','http://diagnostics.finnzymes.fi/warranty.html', '', '', 24)
	oCMenu.makeMenu('top032','top03','Licenses and trademarks','http://diagnostics.finnzymes.fi/licenses_and_trademarks.html', '', '', 24)

oCMenu.makeMenu('top1','','reagents and kits','#','',123,24,'http://diagnostics.finnzymes.fi/gfx/en_menu_reagentsandkits_off.gif','http://diagnostics.finnzymes.fi/gfx/en_menu_reagentsandkits_on.gif','','',"center")
  oCMenu.makeMenu('top11','top1','Microbial Diagnostics','#')
    oCMenu.makeMenu('top111','top11','PathoProof&#153; Mastitis PCR Assay','http://diagnostics.finnzymes.fi/pathoproof/', '', '', 40)
  oCMenu.makeMenu('top12','top1','Parentage Testing and Identification','#')
    oCMenu.makeMenu('top121','top12','Bovine Genotypes&#153;','http://diagnostics.finnzymes.fi/bovine_genotypes.html')
	oCMenu.makeMenu('top122','top12','Equine Genotypes&#153;','http://diagnostics.finnzymes.fi/equine_genotypes.html')
  	oCMenu.makeMenu('top123','top12','Canine Genotypes&#153;','http://diagnostics.finnzymes.fi/canine_genotypes.html')
  oCMenu.makeMenu('top13','top1','Sex Determination','#')
    oCMenu.makeMenu('top131','top13','Ampli-Y&#153;','http://diagnostics.finnzymes.fi/ampli_y.html')
  oCMenu.makeMenu('top14','top1','MSDS','http://diagnostics.finnzymes.fi/MSDS.html')
    
oCMenu.makeMenu('top2','','diagnostics services','#','',140,24,'http://diagnostics.finnzymes.fi/gfx/en_menu_diagnosticsservices_off.gif','http://diagnostics.finnzymes.fi/gfx/en_menu_diagnosticsservices_on.gif','','',"center")
  oCMenu.makeMenu('top21','top2','Microbial Diagnostics','#')
    oCMenu.makeMenu('top211','top21','MasTest&#153;','http://diagnostics.finnzymes.fi/mas_test.html')
  oCMenu.makeMenu('top22','top2','Parentage Testing and Identification','#')
    oCMenu.makeMenu('top221','top22','Canine Parentage Testing and Identification','http://diagnostics.finnzymes.fi/canine_parentage_testing_and_identification.html', '', 205, 40)
    oCMenu.makeMenu('top222','top22','Parentage Testing and Identification for Other Species','http://diagnostics.finnzymes.fi/parentage_testing_and_identification_for_other_species.html', '', 205, 40)
  oCMenu.makeMenu('top23','top2','Forensic DNA Analyses','http://diagnostics.finnzymes.fi/forensic_dna_analyses.html')
  oCMenu.makeMenu('top24','top2','Diagnostics of Inherited Diseases','#')
    oCMenu.makeMenu('top241','top24','Canine Inherited Disease Testing','http://diagnostics.finnzymes.fi/canine_inherited_disease.html', '', 205)
    oCMenu.makeMenu('top242','top24','Bovine Inherited Disease Testing','http://diagnostics.finnzymes.fi/bovine_inherited_disease.html', '', 205)
    oCMenu.makeMenu('top243','top24','Porcine Inherited Disease Testing','http://diagnostics.finnzymes.fi/porcine_inherited_disease.html', '', 205)

oCMenu.makeMenu('top3','','contact ','http://diagnostics.finnzymes.fi/contact.html','',59,24,'http://diagnostics.finnzymes.fi/gfx/en_menu_contact_off.gif','http://diagnostics.finnzymes.fi/gfx/en_menu_contact_on.gif','','',"center")

oCMenu.makeMenu('top4','','Site map','http://diagnostics.finnzymes.fi/sitemap.html','',57,24,'http://diagnostics.finnzymes.fi/gfx/en_menu_sitemap_off.gif','http://diagnostics.finnzymes.fi/gfx/en_menu_sitemap_on.gif','','',"center")

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