
//Menu object creation
VertMenu=new makeCM("VertMenu") //Making the menu object. Argument: menuname

VertMenu.frames=0

//Menu properties   
VertMenu.pxBetween=0
VertMenu.fromLeft=0 
VertMenu.fromTop=150   
VertMenu.rows=0 
VertMenu.menuPlacement="Left"
                                                             
VertMenu.offlineRoot="" 
VertMenu.onlineRoot="" 
VertMenu.resizeCheck=0
VertMenu.wait=10 
VertMenu.fillImg="cm_fill.gif"
VertMenu.zIndex=0

//Background bar properties
VertMenu.useBar=0
VertMenu.barWidth="100"
//VertMenu.barHeight="100%" 
VertMenu.barClass="clBar"
VertMenu.barX=0 
VertMenu.barY=150
VertMenu.barBorderX=0
VertMenu.barBorderY=0
VertMenu.barBorderClass=""

//Level properties - ALL properties have to be specified in level 0
VertMenu.level[0]=new cm_makeLevel() //Add this for each new level
VertMenu.level[0].width=100
VertMenu.level[0].height=36 
VertMenu.level[0].regClass="clLevel0"
VertMenu.level[0].overClass="clLevel0over"
VertMenu.level[0].borderX=0
VertMenu.level[0].borderY=0
VertMenu.level[0].borderClass="clLevel0border"
VertMenu.level[0].offsetX=0
VertMenu.level[0].offsetY=0
//VertMenu.level[0].rows=0
VertMenu.level[0].arrow=0
VertMenu.level[0].arrowWidth=0
VertMenu.level[0].arrowHeight=0
VertMenu.level[0].align="left"



/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
VertMenu.makeMenu('top1','','About Thorhild','/index.htm')

VertMenu.makeMenu('top2','','School Visits','/schools.htm')

VertMenu.makeMenu('top3','','Stitchery','/stitchery.htm')
//  VertMenu.makeMenu('top3a','top3','Hats','/stitchery.htm')
//  VertMenu.makeMenu('top3b','top3','Bags','/stitchery.htm')
//  VertMenu.makeMenu('top3c','top3','Tunics','/stitchery.htm')
//  VertMenu.makeMenu('top3d','top3','Trousers','/stitchery.htm')
//  VertMenu.makeMenu('top3e','top3','Cloaks','/stitchery.htm')
//  VertMenu.makeMenu('top3f','top3','Others','/stitchery.htm')
    
VertMenu.makeMenu('top4','','External Links','/links.htm')

VertMenu.makeMenu('top5','','Contact Thorhild','/contact.htm')



//Leave this line - it constructs the menu
VertMenu.construct()	
