/***
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
tM=new makeCM("tM") //Making the menu object. Argument: menuname

tM.frames = 0
//Menu properties
tM.pxBetween=0
tM.fromLeft=0;
tM.fromTop=138
tM.columns=10
tM.rows=1
/* Added condition to handle IE & other browser differences */
	if(bw.ie) tM.menuPlacement="center"
	else tM.menuPlacement="left"
           tM.fromLeft=15;
tM.offlineRoot=""
tM.onlineRoot=""
tM.resizeCheck=0
tM.wait=100
tM.fillImg=""
tM.zIndex=1

//Background bar properties
tM.useBar=0
tM.barWidth=0
tM.barHeight="27"
tM.barClass="clBar"
tM.barX=50
tM.barY=138
tM.barBorderX=0
tM.barBorderY=0
tM.barBorderClass="clBarborder"

//Level properties - ALL properties have to be specified in level 0
tM.level[0]=new cm_makeLevel() //Add this for each new level
tM.level[0].width=100
tM.level[0].height=20
tM.level[0].regClass="clLevel0"
tM.level[0].overClass="clLevel0over"
tM.level[0].borderX=0
tM.level[0].borderY=0
tM.level[0].borderClass="clLevel0border"
tM.level[0].align="bottom"
tM.level[0].offsetX=0
tM.level[0].offsetY=0
tM.level[0].rows=0
tM.level[0].arrow=0
tM.level[0].arrowWidth=0
tM.level[0].arrowHeight=0
tM.level[0].slidepx=0
//tM.level[0].clippx=30

//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
tM.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
tM.level[1].regClass="clLevel1"
tM.level[1].overClass="clLevel1over"
tM.level[1].borderX=0
tM.level[1].borderY=0
tM.level[1].borderClass="clLevel1border"
tM.level[1].align="bottomright"
tM.level[1].offsetX=5
tM.level[1].offsetY=2
tM.level[1].borderClass="clLevel1border"
tM.level[1].arrow=0
tM.level[1].arrowWidth=9
tM.level[1].arrowHeight=6


//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
tM.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)

/******************************************
Menu item creation:
myCoolMenu.mM(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout)
*************************************/
