/***
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','',' Home | ','http://www.tecu.com/','','45')
oCMenu.makeMenu('sub00','top0',' Homepage
The Copper Link','javascript: var temp = window.open("http://www.thecopperlink.com")','','155','32')
oCMenu.makeMenu('sub01','top0',' Homepage Fricke®
(Rainwater Systems)','javascript: var temp = window.open("http://www.fricke-greven.com")','','155','32')
oCMenu.makeMenu('sub02','top0',' Homepage Tube Systems
(Building Technology)','javascript: var temp = window.open("http://www.kme-tube-systems.com")','','155','32')
oCMenu.makeMenu('sub03','top0',' Homepage Brass Rods
(Profiles)','javascript: var temp = window.open("http://www.kme-brass-rods.com")','','155','32')
oCMenu.makeMenu('top1','',' The Company | ','/the-company/th-co_index.php','','91')
oCMenu.makeMenu('top2','',' Products | ','http://www.tecu.com/products/pr_index.php','','61')
oCMenu.makeMenu('sub20','top2',' Introduction','http://www.tecu.com/products/pr_index.php','','120')
oCMenu.makeMenu('sub21','top2',' Surfaces','http://www.tecu.com/products/surfaces/pr_su_index.php','','120')
oCMenu.makeMenu('sub210','sub21',' Introduction','http://www.tecu.com/products/surfaces/pr_su_index.php','','96')
oCMenu.makeMenu('sub211','sub21',' TECU® Classic','http://www.tecu.com/products/surfaces/tecu-classic/pr_su_te-cl_index.php','','96')
oCMenu.makeMenu('sub212','sub21',' TECU® Patina','http://www.tecu.com/products/surfaces/tecu-patina/pr_su_te-pa_index.php','','96')
oCMenu.makeMenu('sub213','sub21',' TECU® Oxid','http://www.tecu.com/products/surfaces/tecu-oxid/pr_su_te-ox_index.php','','96')
oCMenu.makeMenu('sub214','sub21',' TECU® Zinn','http://www.tecu.com/products/surfaces/tecu-zinn/pr_su_te-zi_index.php','','96')
oCMenu.makeMenu('sub215','sub21',' TECU® Brass','http://www.tecu.com/products/surfaces/tecu-brass/pr_su_te-br_index.php','','96')
oCMenu.makeMenu('sub216','sub21',' TECU® Bronze','http://www.tecu.com/products/surfaces/tecu-bronze/pr_su_te-br_index.php','','96')
oCMenu.makeMenu('sub217','sub21',' TECU® Gold','http://www.tecu.com/products/surfaces/tecu-gold/pr_su_te-go_index.php','','96')
oCMenu.makeMenu('sub22','top2',' Systems','http://www.tecu.com/products/systems/pr_sy_index.php','','120')
oCMenu.makeMenu('sub220','sub22',' Introduction','http://www.tecu.com/products/systems/pr_sy_index.php','','161')
oCMenu.makeMenu('sub221','sub22',' TECU® System Shingles','http://www.tecu.com/products/systems/system-shingles/pr_sy_sy-sh_index.php','','161')
oCMenu.makeMenu('sub222','sub22',' TECU® System Rhomboids','http://www.tecu.com/products/systems/system-rhomboids/pr_sy_sy-rh_index.php','','161')
oCMenu.makeMenu('sub223','sub22',' TECU® Profiled Sheets','http://www.tecu.com/products/systems/profiled-sheets/pr_sy_pr-sh_index.php','','161')
oCMenu.makeMenu('sub224','sub22',' TECU® Profiled Panels','http://www.tecu.com/products/systems/profiled-panels/pr_sy_pr-pa_index.php','','161')
oCMenu.makeMenu('sub225','sub22',' TECU® Cassettes','http://www.tecu.com/products/systems/tecu-cassettes/pr_sy_te-ca_index.php','','161')
oCMenu.makeMenu('sub226','sub22',' TECU® Panels','http://www.tecu.com/products/systems/tecu-panels/pr_sy_te-pa_index.php','','161')
oCMenu.makeMenu('sub227','sub22',' TECU® Net','http://www.tecu.com/products/systems/tecu-net/pr_sy_te-ne_index.php','','161')
oCMenu.makeMenu('sub228','sub22',' TECU® Bond','http://www.tecu.com/products/systems/tecu-bond/pr_sy_te-bo_index.php','','161')
oCMenu.makeMenu('sub229','sub22',' TECU® Seam Cladding','http://www.tecu.com/products/systems/tecu-seamed/pr_sy_te-se_index.php','','161')
oCMenu.makeMenu('sub2290','sub22',' TECU® Accessories','http://www.tecu.com/products/systems/tecu-accessories/pr_sy_te-ac_index.php','','161')
oCMenu.makeMenu('sub23','top2',' Rainwater Systems','http://www.tecu.com/products/rainwater-systems/pr_ra-sy_index.php','','120')
oCMenu.makeMenu('sub230','sub23',' Introduction','http://www.tecu.com/products/rainwater-systems/pr_ra-sy_index.php','','110')
oCMenu.makeMenu('sub231','sub23',' Homepage Fricke','javascript: var temp = window.open("http://www.fricke-greven.com")','','110')
oCMenu.makeMenu('top3','',' Services | ','http://www.tecu.com/services/se_index.php','','60')
oCMenu.makeMenu('sub30','top3',' Introduction','http://www.tecu.com/services/se_index.php','','163')
oCMenu.makeMenu('sub31','top3',' News','http://www.tecu.com/services/news/se_ne_index.php','','163')
oCMenu.makeMenu('sub32','top3',' Customer Service','http://www.tecu.com/services/customer-service/se_cu-se_index.php','','163')
oCMenu.makeMenu('sub33','top3',' Planning Aids','http://www.tecu.com/services/planning-aids/se_pl-ai_index.php','','163')
oCMenu.makeMenu('sub330','sub33',' Introduction','http://www.tecu.com/services/planning-aids/se_pl-ai_index.php','','80')
oCMenu.makeMenu('sub331','sub33',' Order Form','http://www.tecu.com/services/planning-aids/order-form/se_pl-ai_or-fo_index.php','','80')
oCMenu.makeMenu('sub34','top3',' Training Courses','http://www.tecu.com/services/training-courses/se_tr-co_index.php','','163')
oCMenu.makeMenu('sub35','top3',' KME Worldwide','http://www.tecu.com/services/kme-worldwide/se_km-wo_index.php','','163')
oCMenu.makeMenu('sub350','sub35',' Introduction','http://www.tecu.com/services/kme-worldwide/se_km-wo_index.php','','110')
oCMenu.makeMenu('sub351','sub35',' Locations Europe','javascript: var temp = window.open("http://www.thecopperlink.com/kme-worldwide/locations-europe/km-wo_lo-eu_index.php")','','110')
oCMenu.makeMenu('sub352','sub35',' Locations World','javascript: var temp = window.open("http://www.thecopperlink.com/kme-worldwide/locations-world/km-wo_lo-wo_index.php")','','110')
oCMenu.makeMenu('sub36','top3',' Download Center','http://www.tecu.com/services/download-center/se_do-ce_index.php','','163')
oCMenu.makeMenu('sub360','sub36',' Introduction','http://www.tecu.com/services/download-center/se_do-ce_index.php','','80')
oCMenu.makeMenu('sub361','sub36',' Brochures','http://www.tecu.com/services/download-center/brochures/se_do-ce_br_index.php','','80')
oCMenu.makeMenu('sub37','top3',' Metal Prices','http://www.tecu.com/services/metal-prices/se_me-pr_index.php.en','','163')
oCMenu.makeMenu('sub370','sub37',' Introduction','http://www.tecu.com/services/metal-prices/se_me-pr_index.php.en','','80')
oCMenu.makeMenu('sub371','sub37',' LME','http://www.tecu.com/services/metal-prices/prices/se_me-pr_pr_index.php.en','','80')
oCMenu.makeMenu('sub38','top3',' Trade Fairs','http://www.tecu.com/services/trade-fairs/se_tr-fa_index.php','','163')
oCMenu.makeMenu('sub39','top3',' TECU® Architecture Award','http://www.tecu.com/services/tecu-architecture/se_te-ar_index.php','','163')
oCMenu.makeMenu('sub300','sub39',' Introduction','http://www.tecu.com/services/tecu-architecture/se_te-ar_index.php','','195')
oCMenu.makeMenu('sub301','sub39',' TECU® Architecture Award 2007','javascript: var temp = window.open("http://www.tecu.com/taa07_final/index_en.html")','','195')
oCMenu.makeMenu('sub302','sub39',' TECU® Architecture Award 2005','javascript: var temp = window.open("http://www.tecu.com/taa05/en_index.html")','','195')
oCMenu.makeMenu('sub303','sub39',' TECU® Architecture Award 2002','http://www.tecu.com/services/tecu-architecture/award-02/se_te-ar_aw-02_index.php','','195')
oCMenu.makeMenu('sub304','sub39',' TECU® Architecture Award 2000','javascript: var temp = window.open("http://www.tecu.com/award2000/tecu/index.html")','','195')
oCMenu.makeMenu('top4','',' Projects | ','http://www.tecu.com/projects/pr_index.php','','60')
oCMenu.makeMenu('sub40','top4',' Introduction','http://www.tecu.com/projects/pr_index.php','','96')
oCMenu.makeMenu('sub41','top4',' TECU® Classic','http://www.tecu.com/projects/pr_index.php#classic','','96')
oCMenu.makeMenu('sub410','sub41',' De Young Museum, San Francisco USA','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=47','','180')
oCMenu.makeMenu('sub411','sub41',' Education Resource Centre','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=46','','180')
oCMenu.makeMenu('sub412','sub41',' Harbour Control Tower','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=20','','180')
oCMenu.makeMenu('sub413','sub41',' National Heritage Museum','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=31','','180')
oCMenu.makeMenu('sub414','sub41',' Private residence, Simmelsdorf','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=49','','180')
oCMenu.makeMenu('sub415','sub41',' Service Center
Theresienwiese','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=44','','180','32')
oCMenu.makeMenu('sub42','top4',' TECU® Patina','http://www.tecu.com/projects/pr_index.php#patina','','96')
oCMenu.makeMenu('sub420','sub42',' Hamburg City Warehouse','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=40','','180')
oCMenu.makeMenu('sub421','sub42',' International Center for Life','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=39','','180')
oCMenu.makeMenu('sub422','sub42',' Israeli Embassy','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=37','','180')
oCMenu.makeMenu('sub423','sub42',' Mayo Institute of Technology','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=43','','180')
oCMenu.makeMenu('sub424','sub42',' Peckham Library','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=41','','180')
oCMenu.makeMenu('sub425','sub42',' Pilgrimage Church of Padre Pio','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=42','','180')
oCMenu.makeMenu('sub426','sub42',' Raigmore Hospital','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=48','','180')
oCMenu.makeMenu('sub427','sub42',' Restauratn for Villa ArenA','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=13','','180')
oCMenu.makeMenu('sub43','top4',' TECU® Oxid','http://www.tecu.com/projects/pr_index.php#oxid','','96')
oCMenu.makeMenu('sub430','sub43',' Forum Amsterdam','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=6','','180')
oCMenu.makeMenu('sub431','sub43',' Motorway toll complex','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=38','','180')
oCMenu.makeMenu('sub432','sub43',' Municipal libary','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=14','','180')
oCMenu.makeMenu('sub44','top4',' TECU® Zinn','http://www.tecu.com/projects/pr_index.php#zinn','','96')
oCMenu.makeMenu('sub440','sub44',' St. Maria of the Angels','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=15','','180')
oCMenu.makeMenu('sub47','top4',' TECU® Gold','http://www.tecu.com/projects/pr_index.php#gold','','96')
oCMenu.makeMenu('sub470','sub47',' Golden Architecture in City Sculpture Park','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=50','','180')
oCMenu.makeMenu('sub471','sub47',' Koningshof','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=45','','180')
oCMenu.makeMenu('sub472','sub47',' Le Safran festival hall,
CULTURE IN A SAFFRON ROBE','http://www.tecu.com/projects/text-and/pr_te-an_index.php?projekt_id=51','','180','32')
oCMenu.makeMenu('top5','',' Environment | ','http://www.tecu.com/environment/en_index.php','','100')
oCMenu.makeMenu('sub50','top5',' Introduction','http://www.tecu.com/environment/en_index.php','','165')
oCMenu.makeMenu('sub51','top5',' Facts for use','http://www.tecu.com/environment/facts-for/en_fa-fo_index.php.en','','165')
oCMenu.makeMenu('sub52','top5',' Three aspects of a
natural product','http://www.tecu.com/environment/three-aspects/en_th-as_index.php.en','','165','32')
oCMenu.makeMenu('sub520','sub52',' Copper as a
chemical element','http://www.tecu.com/environment/three-aspects/copper-chemical/en_tr-as_co-ch_index.php.en','','115','32')
oCMenu.makeMenu('sub521','sub52',' Copper as a
vital trace element','http://www.tecu.com/environment/three-aspects/copper-vital/en_tr-as_co-vi_index.php.en','','115','32')
oCMenu.makeMenu('sub522','sub52',' Copper as a
heavy metal','http://www.tecu.com/environment/three-aspects/copper-heavy/en_tr-as_co-he_index.php.en','','115','32')
oCMenu.makeMenu('sub53','top5',' Copper in nature','http://www.tecu.com/environment/copper-in/en_co-in_index.php.en','','165')
oCMenu.makeMenu('sub530','sub53',' Behavior of copper ions
in the soil','http://www.tecu.com/environment/copper-in/behaviour-soil/en_be-so_index.php.en','','145','32')
oCMenu.makeMenu('sub531','sub53',' Behavior of copper ions
in the waterways','http://www.tecu.com/environment/copper-in/behaviour-waterways/en_be-wa_index.php.en','','145','32')
oCMenu.makeMenu('sub54','top5',' Copper under atmospheric
influences','http://www.tecu.com/environment/copper-under/en_co-un_index.php.en','','165','32')
oCMenu.makeMenu('sub540','sub54',' Corrosion rate','http://www.tecu.com/environment/copper-under/corrosion-rate/en_co-un_co-ra_index.php.en','','93')
oCMenu.makeMenu('sub541','sub54',' Run off','http://www.tecu.com/environment/copper-under/run-off/en_co-un_ru-of_index.php.en','','93')
oCMenu.makeMenu('sub55','top5',' Regulations and guidelines','http://www.tecu.com/environment/regulations-and/en_re-an_idnex.php.en','','165')
oCMenu.makeMenu('sub56','top5',' Rainwater seepage','http://www.tecu.com/environment/rainwater-seepage/en_ra-se_index.php.en','','165')
oCMenu.makeMenu('sub560','sub56',' Seepage facilities','http://www.tecu.com/environment/rainwater-seepage/seepage-facilities/en_ra-se_se-fa_index.php.en','','115')
oCMenu.makeMenu('sub57','top5',' Recycling and sustainability','http://www.tecu.com/environment/recycling-and/en_re-an_index.php.en','','165')
//Leave this line - it constructs the menu
oCMenu.construct()