/*** 
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

//Menu properties   
oCMenu.pxBetween=0
//Using the cm_page object to place the menu ----
oCMenu.fromLeft=0
oCMenu.fromTop=98
oCMenu.rows=1
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="http://www.wellspring-healing.com" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0

//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=""
oCMenu.level[0].height=24 
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"


//Level 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=""
oCMenu.level[1].height=24 
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].borderClass="clLevel1border"
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].rows=0
oCMenu.level[1].arrow=0
oCMenu.level[1].arrowWidth=0
oCMenu.level[1].arrowHeight=0
oCMenu.level[1].align="bottom"

/******************************************
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('top1','','&nbsp;&nbsp;WHO WE ARE','/acupuncture_who.html','',108,0)
	oCMenu.makeMenu('sub10','top1','Philosophy','/acupuncture_philosophy.html','',108,0)
	oCMenu.makeMenu('sub11','top1','Bonnie Walker Bio','/bonnie_bio.html','',108,0)
	oCMenu.makeMenu('sub12','top1','Bonnie Walker CV','/bonnie_cv.html','',108,0)
	oCMenu.makeMenu('sub13','top1','Meet the Staff','/acupuncture_staff.html','',108,0)
	
oCMenu.makeMenu('top2','','&nbsp;&nbsp;OUR SERVICES','','',115,0)
	oCMenu.makeMenu('sub21','top2','Acupuncture','/acupuncture_services.html','',115,0)
	oCMenu.makeMenu('sub22','top2','Chiropractor','/chiropractic.html','',115,0)
	oCMenu.makeMenu('sub23','top2','Taiji Quan','/taijiquan.html','',115,0)
	oCMenu.makeMenu('sub24','top2','Nutrition','/nutrition.html','',115,0)
	oCMenu.makeMenu('sub26','top2','Massage','/massage.html','',115,0)
	
oCMenu.makeMenu('top3','','&nbsp;&nbsp;THE PRACTICE','/acupuncture_practice.html','',116,0)
	oCMenu.makeMenu('sub31','top3','Service Hours','/acupuncture_hours.html','',116,0)
	oCMenu.makeMenu('sub32','top3','Financial Policy','/acupuncture_financial.html','',116,0)
	oCMenu.makeMenu('sub33','top3','Contact Form','/acupuncture_contact.html','',116,0)
	
oCMenu.makeMenu('top4','','&nbsp;&nbsp;NEW PATIENT','/goodreasons.html','',112,0)
	oCMenu.makeMenu('sub41','top4','Testimonials','/testimonials.html','',112,0)
	oCMenu.makeMenu('sub42','top4','Contact Form','/acupuncture_contact.html','',112,0)
	
oCMenu.makeMenu('top5','','&nbsp;&nbsp;CONTACT','/acupuncture_contact.html','',87,0)
	
oCMenu.makeMenu('top6','','&nbsp;&nbsp;FAQS','/faqs.html','',59,0)

//Leave this line - it constructs the menu
oCMenu.construct()		