// JavaScript Document
/*** 
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
oCMenu2=new makeCM("oCMenu2") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu2.pxBetween=0
oCMenu2.fromLeft=320
oCMenu2.fromTop=36   
oCMenu2.rows=1 
oCMenu2.menuPlacement="left"
                                                             
oCMenu2.offlineRoot="" 
oCMenu2.onlineRoot="" 
oCMenu2.resizeCheck=1 
oCMenu2.wait=1000 
oCMenu2.fillImg=""
oCMenu2.zIndex=0

//Background bar properties
oCMenu2.useBar=1
oCMenu2.barWidth="0"
oCMenu2.barHeight="menu" 
oCMenu2.barClass="cl2Bar"
oCMenu2.barX=0 
oCMenu2.barY=0
oCMenu2.barBorderX=0
oCMenu2.barBorderY=0
oCMenu2.barBorderClass="none"

//Level properties - ALL properties have to be spesified in level 0
oCMenu2.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu2.level[0].width=100
oCMenu2.level[0].height=19 
oCMenu2.level[0].regClass="cl2Level0"
oCMenu2.level[0].overClass="cl2Level0over"
oCMenu2.level[0].borderX=1
oCMenu2.level[0].borderY=1
oCMenu2.level[0].borderClass="cl2Level0border"
oCMenu2.level[0].offsetX=-1
oCMenu2.level[0].offsetY=-1
oCMenu2.level[0].rows=0
oCMenu2.level[0].arrow=0
oCMenu2.level[0].arrowWidth=0
oCMenu2.level[0].arrowHeight=0
oCMenu2.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
oCMenu2.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu2.level[1].width=oCMenu2.level[0].width-2
oCMenu2.level[1].height=19
oCMenu2.level[1].regClass="cl2Level1"
oCMenu2.level[1].overClass="cl2Level1over"
oCMenu2.level[1].borderX=1
oCMenu2.level[1].borderY=1
oCMenu2.level[1].align="left" 
oCMenu2.level[1].offsetX=-(oCMenu2.level[0].width-2)/2+52
oCMenu2.level[1].offsetY=3
oCMenu2.level[1].borderClass="cl2Level1border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

oCMenu2.makeMenu('top0','','Discover Belgium &nbsp;&nbsp;&nbsp;&nbsp;','')
  oCMenu2.makeMenu('sub00','top0','Introduction','http://209.213.221.5/introduction.htm','',136,0)
  oCMenu2.makeMenu('sub02','top0','Brussels','http://209.213.221.5/brussels.htm','',136,0)
  oCMenu2.makeMenu('sub03','top0','Flanders','','',136,0)
  oCMenu2.makeMenu('sub031','sub03','Introduction','http://209.213.221.5/flanders.htm','',136,0)
  oCMenu2.makeMenu('sub032','sub03','Antwerp','http://209.213.221.5/antwerp.htm','',136,0)
  oCMenu2.makeMenu('sub033','sub03','Bruges','http://209.213.221.5/bruges.htm','',136,0)
  oCMenu2.makeMenu('sub034','sub03','Ghent','http://209.213.221.5/ghent.htm','',136,0)
  oCMenu2.makeMenu('sub035','sub03','Leuven','http://209.213.221.5/leuven.htm','',136,0)
  oCMenu2.makeMenu('sub036','sub03','Mechelen','http://209.213.221.5/mechelen.htm','',136,0)
  oCMenu2.makeMenu('sub037','sub03','Other Flemish Towns','http://209.213.221.5/otherflemish.htm','',136,0)
  oCMenu2.makeMenu('sub04','top0','Wallonia','','',136,0)
  oCMenu2.makeMenu('sub040','sub04','Introduction','http://209.213.221.5/wallonia.htm','',136,0)
  oCMenu2.makeMenu('sub041','sub04','Liege','http://209.213.221.5/liege.htm','',136,0)
  oCMenu2.makeMenu('sub042','sub04','Namur','http://209.213.221.5/namur.htm','',136,0)
  oCMenu2.makeMenu('sub043','sub04','Spa','http://209.213.221.5/spa.htm','',136,0)
  oCMenu2.makeMenu('sub044','sub04','Tournai','http://209.213.221.5/tournai.htm','',136,0)
  oCMenu2.makeMenu('sub045','sub04','Beautiful Villages','http://209.213.221.5/villages.htm','',136,0)
  oCMenu2.makeMenu('sub046','sub04','Other Walloon Towns','http://209.213.221.5/otherwallonia.htm','',136,0)
  oCMenu2.makeMenu('sub05','top0','Suggested Itineraries','http://209.213.221.5/itineraries.htm','',136,0)  
  oCMenu2.makeMenu('sub06','top0','History of Belgium','http://209.213.221.5/historyofbelgium.htm','',136,0)
  oCMenu2.makeMenu('sub07','top0','Did you know?','http://209.213.221.5/didyouknow.htm','',136,0)
  oCMenu2.makeMenu('sub08','top0','Facts & Figures','http://209.213.221.5/factsfigures.htm','',136,0)

oCMenu2.makeMenu('top1','','&nbsp;&nbsp;&nbsp;What to do?  ','')
  oCMenu2.makeMenu('sub9','top1','Special Interests','','',136,0)
  oCMenu2.makeMenu('sub91','sub9',' Art & Architecture','http://209.213.221.5/artandarchitecture.htm','',136,0)
  oCMenu2.makeMenu('sub92','sub9','Beer Lovers','http://209.213.221.5/beer.htm','',136,0)
  oCMenu2.makeMenu('sub93','sub9','Chocolate Lovers','http://209.213.221.5/chocolate.htm','',136,0)
  oCMenu2.makeMenu('sub94','sub9','Belfries & Beguinages','http://209.213.221.5/belfrybeg.htm','',136,0)
  oCMenu2.makeMenu('sub95','sub9','Family Fun','http://209.213.221.5/familyfun.htm','',136,0)
  oCMenu2.makeMenu('sub96','sub9','Castles & Gardens','http://209.213.221.5/gardens.htm','',136,0)
  oCMenu2.makeMenu('sub97','sub9','Gay Travel','http://209.213.221.5/gaytravel.htm','',136,0)
  oCMenu2.makeMenu('sub98','sub9','Jewish Heritage','http://209.213.221.5/jewish.htm','',136,0)
  oCMenu2.makeMenu('sub99','sub9','WWI & WWII','http://209.213.221.5/worldwar.htm','',136,0)
  oCMenu2.makeMenu('sub10','top1','Brussels Highlights','http://209.213.221.5/bxlhighlights.htm','',136,0)
  oCMenu2.makeMenu('sub11','top1','Cultural Belgium','http://209.213.221.5/artculture.htm','',136,0)
  oCMenu2.makeMenu('sub12','top1','Gourmet Corner','http://209.213.221.5/food.htm','',136,0)
  oCMenu2.makeMenu('sub13','top1','Festivals','http://209.213.221.5/festivals.htm','',136,0)
  oCMenu2.makeMenu('sub14','top1','Nightlife & Entertainment','http://209.213.221.5/nightlife.htm','',136,30)
  oCMenu2.makeMenu('sub15','top1','Recreation & Sports','http://209.213.221.5/sports.htm','',136,0)
  oCMenu2.makeMenu('sub16','top1','River Cruising','http://209.213.221.5/cruise.htm','',136,0)
  oCMenu2.makeMenu('sub17','top1','Shopping','http://209.213.221.5/shoppingandmarkets.htm','',136,0)
  oCMenu2.makeMenu('sub18','top1','UNESCO','http://209.213.221.5/unesco.htm','',136,0)
  oCMenu2.makeMenu('sub19','top1','Young & Hip','http://209.213.221.5/younghip.htm','',136,0)

oCMenu2.makeMenu('top2','','Where to Stay?   ','http://209.213.221.5/accommodations.htm')

oCMenu2.makeMenu('top3','','Practical Info','')
  oCMenu2.makeMenu('sub40','top3','Before you go','http://209.213.221.5/practical.htm','',136,0)
  oCMenu2.makeMenu('sub41','top3','Transportation','http://209.213.221.5/transportation.htm','',136,0)
  oCMenu2.makeMenu('sub42','top3','Tour Operators','http://209.213.221.5/touroperators.htm','',136,0)
  
//Leave this line - it constructs the menu
oCMenu2.construct()		
