
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=2 
oCMenu.fromTop=145   
oCMenu.rows=0 
oCMenu.menuPlacement="left"
                                                                      
oCMenu.offlineRoot="file:///D:/sun/homepage/burulei_homepage/"
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="images/cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth=0
oCMenu.barHeight=0 
oCMenu.barClass=0
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=112
oCMenu.level[0].height=20 
oCMenu.level[0].borderX=2
oCMenu.level[0].borderY=2
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].rows=0



/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/

var mainURL = "paintings/"


//oCMenu.makeMenu('100','','&nbsp;Home',mainURL+'main.html')

oCMenu.makeMenu('100','','&nbsp;About Artist',mainURL+'../html/burulei_bio.html')

oCMenu.makeMenu('200','','&nbsp;Small Florals',mainURL+'floral1/floral1_index.html')

oCMenu.makeMenu('300','','&nbsp;Large Florals',mainURL+'floral2/floral2_index.html')

oCMenu.makeMenu('400','','&nbsp;Still Lifes',mainURL+'stilllife/stilllife_index.html')

oCMenu.makeMenu('500','','&nbsp;Small Landscapes',mainURL+'landscape/landscape_index.html')

oCMenu.makeMenu('600','','&nbsp;Large Landscapes',mainURL+'landscape2/landscape2_index.html')

oCMenu.makeMenu('700','','&nbsp;Figurative',mainURL+'figure/figure_index.html')

oCMenu.makeMenu('800','','&nbsp;City & Village',mainURL+'village/village_index.html')

oCMenu.makeMenu('900','','&nbsp;Fish',mainURL+'fish/fish_index.html')

oCMenu.makeMenu('1000','','&nbsp;Drawings',mainURL+'drawing/drawing_index.html')

oCMenu.makeMenu('1100','','&nbsp;Contact',mainURL+'../html/contact.html')

//Leave this line - it constructs the menu
oCMenu.construct()



