/*** 
This is the menu creation code - place it right after you body tag
Feel free to add this to a stand-alone js file and link it to your page.
**/

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

oCMenu.frames = 1

//Menueeigenschaften   
oCMenu.pxBetween=1
oCMenu.fromLeft=40 
oCMenu.fromTop=27   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="file:///C|/Inetpub/wwwroot/dphpcentral/projects/coolmenus/examples/" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="/b.gif"
oCMenu.zIndex=0

//BALKEN F†R HINTERGRUND , EIGENSCHAFTEN
oCMenu.useBar=1

oCMenu.barHeight="14" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=0
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass="clBar"


 

//NAVIGATIONSEIGENSCHAFTEN
 
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level

oCMenu.level[0].height=15
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=2
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"



//EIGENSCHAFTEN SUBMENUEPUNKTE  - 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=110
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=0
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2-1
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


//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=90
oCMenu.level[2].height=20
oCMenu.level[2].offsetX=1
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
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','','&nbsp;Home&nbsp;|&nbsp;','http://www.kme-extrusion.com','','45')
	oCMenu.makeMenu('sub00','top0','&nbsp;Homepage<br>&nbsp;The Copper Link','javascript: var temp = window.open("http://www.thecopperlink.com")','','140','32')
	oCMenu.makeMenu('sub01','top0','&nbsp;Corporate Division','/the-division/th-di_index.php','','140')
	oCMenu.makeMenu('sub02','top0','&nbsp;Homepage<br>&nbsp;Marine Applications','javascript: var temp = window.open("http://www.kme-marine-applications.com/")','','140','32')
	
	
oCMenu.makeMenu('top1','','Pure Copper Applications&nbsp;|&nbsp;','/pure-copper/pu-co_index.php','','153')		
	oCMenu.makeMenu('sub10','top1','&nbsp;Introduction','/pure-copper/pu-co_index.php','','115')
	oCMenu.makeMenu('sub11','top1','&nbsp;Bars and Wire','/pure-copper/bars-and/pu-co_ba-an_index.php','','115')
	oCMenu.makeMenu('sub12','top1','&nbsp;Copper Sections','/pure-copper/copper-sections/pu-co_co-se_index.php','','115')
	oCMenu.makeMenu('sub13','top1','&nbsp;Finished Parts','/pure-copper/finished-parts/pu-co_fi-pa_index.php','','115')
	
oCMenu.makeMenu('top2','','Special Applications&nbsp;|&nbsp;','/special-applications/sp-ap_index.php','','124')
	oCMenu.makeMenu('sub20','top2','&nbsp;Introduction','/special-applications/sp-ap_index.php','','138')
	oCMenu.makeMenu('sub21','top2','&nbsp;ProCu&reg;','/special-applications/procu/sp-ap_pr_index.php','','138')
		 oCMenu.makeMenu('sub210','sub21','&nbsp;&nbsp;Introduction','/special-applications/procu/sp-ap_pr_index.php','','158')
		 oCMenu.makeMenu('sub211','sub21','&nbsp;&nbsp;Hollow copper conductors','/special-applications/procu/hollow-conductors/sp-ap_pr_ho-co_index.php','','158')
		 oCMenu.makeMenu('sub212','sub21','&nbsp;&nbsp;Rods/Bars and Profiles','/special-applications/procu/rods-profiles/sp-ap_pr_ro-pr_index.php','','158')
		
	oCMenu.makeMenu('sub22','top2','&nbsp;OSNA-Cu 58&reg;&nbsp;','/special-applications/osna-cu/sp-ap_os-cu_index.php','','138')
		oCMenu.makeMenu('sub220','sub22','&nbsp;&nbsp;Introduction','/special-applications/osna-cu/sp-ap_os-cu_index.php','','170')
		oCMenu.makeMenu('sub221','sub22','&nbsp;&nbsp;Product Range/Mechnanical<br>&nbsp;&nbsp;strength properties','/special-applications/osna-cu/product-range/sp-ap_os-cu_pr-ra_index.php','','170','32')
		oCMenu.makeMenu('sub222','sub22','&nbsp;&nbsp;Mechanical/Physical<br>&nbsp;&nbsp;properties','/special-applications/osna-cu/mechanical-properties/sp-ap_os-cu_me-pr_index.php','','170','32')
		oCMenu.makeMenu('sub223','sub22','&nbsp;&nbsp;Galvanising/Scrap disposal','/special-applications/osna-cu/galvanising/sp-ap_os-cu_ga_index.php','','170')
		oCMenu.makeMenu('sub224','sub22','&nbsp;&nbsp;Drilling/Cutting','/special-applications/osna-cu/drilling/sp-ap_os-cu_dr_index.php','','170')
		oCMenu.makeMenu('sub225','sub22','&nbsp;&nbsp;Turning','/special-applications/osna-cu/turning/sp-ap_os-cu_tu_index.php','','170')
		oCMenu.makeMenu('sub226','sub22','&nbsp;&nbsp;Forming, Thread cutting,<br>&nbsp;&nbsp;Soldering and welding','/special-applications/osna-cu/forming-welding/sp-ap_os-cu_fo-we_index.php','','170','32')
		oCMenu.makeMenu('sub227','sub22','&nbsp;&nbsp;Applications','/special-applications/osna-cu/applications/sp-ap_os-cu_ap_index.php','','170')
		oCMenu.makeMenu('sub228','sub22','&nbsp;&nbsp;Stock sizes','/special-applications/osna-cu/stock-sizes/sp-ap_os-cu_st-si_index.php','','170')
		
	oCMenu.makeMenu('sub23','top2','&nbsp;ELBRODUR&reg;&nbsp;','/special-applications/elbrodur/sp-ap_el_index.php','','138')
		oCMenu.makeMenu('sub230','sub23','&nbsp;&nbsp;Introduction','/special-applications/elbrodur/sp-ap_el_index.php','','170')
		oCMenu.makeMenu('sub231','sub23','&nbsp;&nbsp;Physical and mechanical<br>&nbsp;&nbsp;properties','/special-applications/elbrodur/physical-and/sp-ap_el_ph-an_index.php','','170','32')
		oCMenu.makeMenu('sub232','sub23','&nbsp;&nbsp;High temperature hardness,<br>&nbsp;&nbsp;Resistance to softening','/special-applications/elbrodur/resistance-to/sp-ap_el_re-to_index.php','','170','32')
		oCMenu.makeMenu('sub233','sub23','&nbsp;&nbsp;Normen','/special-applications/elbrodur/standards/sp-ap_el_st_index.php','','170')
		oCMenu.makeMenu('sub234','sub23','&nbsp;&nbsp;ELBRODUR&reg; HF','/special-applications/elbrodur/elbrodur-hf/sp-ap_el_el-hf_index.php','','170')
		oCMenu.makeMenu('sub235','sub23','&nbsp;&nbsp;ELBRODUR&reg; N','/special-applications/elbrodur/elbrodur-n/sp-ap_el_el-n_index.php','','170')
		oCMenu.makeMenu('sub236','sub23','&nbsp;&nbsp;ELBRODUR&reg; HF/N-Tubes','/special-applications/elbrodur/elbrodur-hfn/sp-ap_el_el-hf_index.php','','170')
		
		oCMenu.makeMenu('sub239','sub23','&nbsp;&nbsp;ELBRODUR&reg; G','/special-applications/elbrodur/elbrodur-g/sp-ap_el_el-g_index.php','','170')
		oCMenu.makeMenu('sub2340','sub23','&nbsp;&nbsp;ELBRODUR&reg; B','/special-applications/elbrodur/elbrodur-b/sp-ap_el_el-b_index.php','','170')
		oCMenu.makeMenu('sub2341','sub23','&nbsp;&nbsp;ELBRODUR&reg; D','/special-applications/elbrodur/elbrodur-d/sp-ap_el_el-d_index.php','','170')
		
		oCMenu.makeMenu('sub2343','sub23','&nbsp;&nbsp;Special tubes/Contact tubes','/special-applications/elbrodur/special-tubes/sp-ap_el_sp-tu_index.php','','170')
		oCMenu.makeMenu('sub2344','sub23','&nbsp;&nbsp;Applications','/special-applications/elbrodur/applications/sp-ap_el_ap_index.php','','170')
		
			
	
		
	oCMenu.makeMenu('sub25','top2','&nbsp;ANCU&reg; Anodes&nbsp;','/special-applications/ancu-anodes/sp-ap_an-an_index.php','','138')
		oCMenu.makeMenu('sub250','sub25','&nbsp;&nbsp;Introduction','/special-applications/ancu-anodes/sp-ap_an-an_index.php','','120')
		oCMenu.makeMenu('sub251','sub25','&nbsp;&nbsp;ANCU&reg; 08','/special-applications/ancu-anodes/ancu-08/sp-ap_an-an_an-08_index.php','','120')
		oCMenu.makeMenu('sub252','sub25','&nbsp;&nbsp;ANCU&reg; 68','/special-applications/ancu-anodes/ancu-68/sp-ap_an-an_an-68_index.php','','120')
		oCMenu.makeMenu('sub253','sub25','&nbsp;&nbsp;Forms and Grades','/special-applications/ancu-anodes/forms-grades/sp-ap_an-an_fo-gr_index.php','','120')
		oCMenu.makeMenu('sub254','sub25','&nbsp;&nbsp;Material Data','/special-applications/ancu-anodes/material-data/sp-ap_an-an_ma-da_index.php','','120')
				
	oCMenu.makeMenu('sub27','top2','&nbsp;Tubes for Electrical<BR>&nbsp;Applications&nbsp;&nbsp;','/special-applications/tubes-for/sp-ap_tu-fo_index.php','','138','32')
		
	oCMenu.makeMenu('sub28','top2','&nbsp;Finished parts acc.<BR>&nbsp;to customer drawing&nbsp','/special-applications/finished-parts/sp-ap_fi-pa_index.php','','138','32')
		oCMenu.makeMenu('sub280','sub28','&nbsp;&nbsp;Introduction','/special-applications/finished-parts/sp-ap_fi-pa_index.php','','100')
		oCMenu.makeMenu('sub281','sub28','&nbsp;&nbsp;Applications','/special-applications/finished-parts/applications/sp-ap_fi-pa_ap_index.php','','100')
		
oCMenu.makeMenu('top3','','Quality&nbsp;|&nbsp;','/quality-management/qu-ma_index.php','','48')
	oCMenu.makeMenu('sub30','top3','&nbsp;Introduction','/quality-management/qu-ma_index.php','','135')
		
oCMenu.makeMenu('top4','','&nbsp;Services&nbsp;|','/services/se_index.php','','115')		
	oCMenu.makeMenu('sub40','top4','&nbsp;Introduction','/services/se_index.php','','115')
	oCMenu.makeMenu('sub41','top4','&nbsp;Customer Service','/services/customer-service/se_co-se_index.php','','115')
	oCMenu.makeMenu('sub42','top4','&nbsp;Metal Prices','/services/metal-prices/se_me-pr_index.php.en','','115')
		oCMenu.makeMenu('sub420','sub42','&nbsp;Introduction','/services/metal-prices/se_me-pr_index.php.en','','80')
		oCMenu.makeMenu('sub421','sub42','&nbsp;LME','/services/metal-prices/prices/se_me-pr_pr_index.php.en','','80')
	oCMenu.makeMenu('sub43','top4','&nbsp;KME Worldwide','/services/kme-worldwide/se_km-wo_index.php','','115')
		oCMenu.makeMenu('sub430','sub43','&nbsp;Introduction','/services/kme-worldwide/se_km-wo_index.php','','115')
		oCMenu.makeMenu('sub431','sub43','&nbsp;Locations Europe','javascript: var temp = window.open("http://www.thecopperlink.com/kme-worldwide/locations-europe/km-wo_lo-eu_index.php")','','115')
		oCMenu.makeMenu('sub432','sub43','&nbsp;Locations World','javascript: var temp = window.open("http://www.thecopperlink.com/kme-worldwide/locations-world/km-wo_lo-wo_index.php")','','115')
	oCMenu.makeMenu('sub44','top4','&nbsp;Download Center','/services/download-center/se_do-ce_index.php','','115')
		oCMenu.makeMenu('sub440','sub44','&nbsp;Introduction','/services/download-center/se_do-ce_index.php','','120')
		oCMenu.makeMenu('sub441','sub44','&nbsp;Brochures','/services/download-center/brochures/se_do-ce_br_index.php','','120')
		
		oCMenu.makeMenu('sub443','sub44','&nbsp;Data Sheets','/services/download-center/data-sheets/se_do-ce_da-sh_index.php','','120')
		
	oCMenu.makeMenu('sub45','top4','&nbsp;Trade Fairs','/services/trade-fairs/se_tr-fa_index.php','','115')

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