/*** 
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.
**/

document.writeln('<table><tr><td height="196"></td></tr></table>');

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

//Menu properties   
oCMenu.pxBetween=2
oCMenu.fromLeft=0 
oCMenu.fromTop=140   
oCMenu.rows=0 
oCMenu.menuPlacement=0

oCMenu.offlineRoot="" 
oCMenu.onlineRoot="" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="menu"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX="menu"
oCMenu.barY="menu"
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=138
oCMenu.level[0].height=17
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].align="right" 


//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
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=140
oCMenu.level[1].height=20
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].align="bottom" 
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].borderX=1 
oCMenu.level[1].borderY=1
oCMenu.level[1].rows=1


/******************************************
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.firststeps.us/')
	
oCMenu.makeMenu('top1','','&nbsp;ABOUT US','')
	oCMenu.makeMenu('sub10','top1','&nbsp;ABOUT FIRST STEPS','http://www.firststeps.us/aboutus.shtml')
	oCMenu.makeMenu('sub11','top1','&nbsp;BOARD & STAFF','http://www.firststeps.us/board_staff.shtml')
	oCMenu.makeMenu('sub12','top1','&nbsp;OUR PARTNERS','http://www.firststeps.us/partnerdescriptions.shtml')	
	oCMenu.makeMenu('sub13','top1','&nbsp;OUR LOCATION','http://www.firststeps.us/location.shtml')
	oCMenu.makeMenu('sub14','top1','&nbsp;CONTACT US','http://www.firststeps.us/contact.shtml')	
	
oCMenu.makeMenu('top2','','&nbsp;PARENTS','')
	oCMenu.makeMenu('sub21','top2','&nbsp;INFO FOR PARENTS','http://www.firststeps.us/parents.shtml','_top',170)
	oCMenu.makeMenu('sub22','top2','&nbsp;CHILD DEVELOPMENT','http://www.firststeps.us/parents_childdevelopment.shtml','_top',170)
	oCMenu.makeMenu('sub23','top2','&nbsp;SCHOOL READINESS','http://www.firststeps.us/parents_schoolreadiness.shtml','_top',170)
	oCMenu.makeMenu('sub24','top2','&nbsp;EARLY CHILDHOOD QUOTES','http://www.firststeps.us/parents_whatotherssay.shtml','_top',170)
	oCMenu.makeMenu('sub25','top2','&nbsp;GLOSSARY','http://www.firststeps.us/glossary.shtml','_top',170)	

oCMenu.makeMenu('top3','','&nbsp;PROFESSIONALS','http://www.firststeps.us/professionals.shtml')


oCMenu.makeMenu('top4','','&nbsp;NEWS & INFORMATION','')
	oCMenu.makeMenu('sub40','top4','&nbsp;NEWS & INFO MAIN PAGE','http://www.firststeps.us/news_info.shtml','_top',180)
	oCMenu.makeMenu('sub41','top4','&nbsp;FirstSteps on KAAL TV (VIDEO)','http://www.firststeps.us/images/KAALFirstSteps101205.wmv','_blank',180)
	oCMenu.makeMenu('sub42','top4','&nbsp;FirstSteps on KTTC TV (VIDEO)','http://www.firststeps.us/images/KTTC6pmFirstSteps101105.wmv','_blank',180)

oCMenu.makeMenu('top5','','&nbsp;EVENTS CALENDAR','')
	oCMenu.makeMenu('sub50','top5','&nbsp;FIRST STEPS CALENDAR','http://firststeps.us/cal/calendar.php','_top',180)
	oCMenu.makeMenu('sub51','top5','&nbsp;RochesterFamilies.com','http://www.rochesterfamilies.com','_blank',180)

oCMenu.makeMenu('top6','','&nbsp;FAQ','http://www.firststeps.us/faq.shtml')

oCMenu.makeMenu('top7','','&nbsp;DONATE','http://www.firststeps.us/donate.shtml')

oCMenu.makeMenu('top8','','&nbsp;CONTACT US','http://www.firststeps.us/contact.shtml')

oCMenu.makeMenu('top9','','&nbsp;RELATED LINKS','')
	oCMenu.makeMenu('sub90','top9','&nbsp;FIRST HOMES','http://www.FirstHomes.org','_blank',180)
	oCMenu.makeMenu('sub91','top9','&nbsp;ROCHESTER AREA FOUNDATION','http://www.rochesterarea.org','_blank',180)
//Leave this line - it constructs the menu
oCMenu.construct()		
