/*** 
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 = 0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=0 
oCMenu.fromTop=0   
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="file:///C:/Users/Rob/Documents/My Web Sites/mysite2" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=10

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="100%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
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=110
oCMenu.level[0].height=23 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
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"

//Leve2 properties - ALL properties have to be spesified in level 0
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level
oCMenu.level[1].width=110
oCMenu.level[1].height=23 
oCMenu.level[1].regClass="clLevel0"
oCMenu.level[1].overClass="clLevel0over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].borderClass="clLevel0border"
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].rows=0
oCMenu.level[1].arrow="http://svft.org/arrow.gif"
oCMenu.level[1].arrowWidth=8
oCMenu.level[1].arrowHeight=15
oCMenu.level[1].align="right"
/******************************************
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','','&nbsp;Home','http://www.svft.org/index.html','','50')
	
oCMenu.makeMenu('top1','','&nbsp;About Us','','','75')
	oCMenu.makeMenu('sub10','top1','Welcome','http://www.svft.org/888welcome.html','','160','')
	oCMenu.makeMenu('sub11','top1','Executive Officers','http://www.svft.org/888officers.html','','160','')
	oCMenu.makeMenu('sub12','top1','Building Representatives','http://www.svft.org/888reps.html','','160','')
	oCMenu.makeMenu('sub13','top1','Committee Assignments','http://www.svft.org/888committees.html','','160','')
	oCMenu.makeMenu('sub14','top1','Directions','http://www.svft.org/888direct.html','','160','')

	
oCMenu.makeMenu('top2','','&nbsp;Resources','','','75')
	oCMenu.makeMenu('sub21','top2','Employee Mediation','http://www.svft.org/888mediation.html','','135','')
	oCMenu.makeMenu('sub22','top2','Forms &amp; Documents','http://www.svft.org/888formsdocs.html','','135','')
	oCMenu.makeMenu('sub23','top2','Health &amp; Safety','http://www.svft.org/888h_s.html','','135','')
	oCMenu.makeMenu('sub24','top2','Laws &amp; Policies','http://www.svft.org/888lawspolicies.html','','135','')
	oCMenu.makeMenu('sub25','top2','Web Resources','http://www.svft.org/888weblinks.html','','135','')

oCMenu.makeMenu('top3','','Current Issues','','','','','','','','','')
	oCMenu.makeMenu('sub30','top3','What&#39;s Happening&#63; Update','http://www.svft.org/888w_h.html','','210','','','','','','')
   	oCMenu.makeMenu('sub31','top3','Vo-Tech Issues','','','210','','','','','','')
		oCMenu.makeMenu('sub310','sub31','Whitney','http://www.svft.org/888whitney.html','','110','','','','','','')
		oCMenu.makeMenu('sub311','sub31','J.M. Wright','http://www.svft.org/888wright.html','','110','','','','','','')
		oCMenu.makeMenu('sub312','sub31','LPN','http://www.svft.org/888lpn.html','','110','','','','','','')
		oCMenu.makeMenu('sub313','sub31','VoTech Forum','http://www.svft.org/888votech.html','','110','','','','','','')
	oCMenu.makeMenu('sub32','top3','Vocational Instructor Newsletter','http://www.svft.org/888v_i.html','','210','','','','','','')
	oCMenu.makeMenu('sub33','top3','News &amp; Views','http://www.svft.org/888newsviews.html','','210','','','','','','')
	oCMenu.makeMenu('sub34','top3','SEBAC','http://www.svft.org/888sebac.html','','210','','','','','','')
	oCMenu.makeMenu('sub35','top3','LOB','http://www.svft.org/888lob.html','','210','','','','','','')
	oCMenu.makeMenu('sub36','top3','TOY','http://www.svft.org/888toy.html','','210','','','','','','')


//Leave this line - it constructs the menu
oCMenu.construct()