//Menu object creation
var winW = 630, winH = 460

if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth;
  winH = window.innerHeight;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = document.body.offsetWidth;
  winH = document.body.offsetHeight;
 }
}

oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname
oCMenu.frames = 0
//Menu properties   
oCMenu.pxBetween=30
oCMenu.fromLeft=(winW/2)+180
oCMenu.fromTop=70   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
//oCMenu.offlineRoot="file:///C|/Inetpub/wwwroot/dhtmlcentral/projects/coolmenus/examples/" 
oCMenu.onlineRoot="http://SeatoftheSoul.com/" 
oCMenu.resizeCheck=1 
oCMenu.wait=100 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=3

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="100%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=990 
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=190
oCMenu.level[0].height=25 
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"

//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=oCMenu.level[0].width+27
oCMenu.level[1].height=22
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"

//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
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=150
oCMenu.level[2].height=20
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"
/******************************************
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('top3','','&nbsp;Inside SeatOfTheSoul.com','')
	oCMenu.makeMenu('sub30','top3','About Gary & Linda','http://www.seatofthesoul.com/aboutus.html')
	oCMenu.makeMenu('sub31','top3','The Seat of the Soul Institute','http://www.seatofthesoul.com/seatofthesoul.html')
	oCMenu.makeMenu('sub32','top3','The Authentic Power Program','http://www.seatofthesoul.com/authentic_power.html')
	oCMenu.makeMenu('sub33','top3','Introduction to Spiritual Partnerships','http://www.seatofthesoul.com/sp_intro.html')
	oCMenu.makeMenu('sub34','top3','Spiritual Partnership Guidelines','http://www.seatofthesoul.com/guidelines.html')
	oCMenu.makeMenu('sub35','top3','Events & Retreats','http://www.seatofthesoul.com/sp_workshops.html')
	oCMenu.makeMenu('sub36','top3','Free Online Course','http://www.seatofthesoul.com/online_courses.html')
	oCMenu.makeMenu('sub37','top3','Soul Store','http://www.seatofthesoul.com/soulstore.html')
	oCMenu.makeMenu('sub38','top3','Interviews with Gary','http://www.seatofthesoul.com/interviews.html')
	oCMenu.makeMenu('sub39','top3','Vocabulary of Authentic Power','http://www.seatofthesoul.com/vocab.html')
	// oCMenu.makeMenu('sub40','top3','Soul Stories','http://www.seatofthesoul.com/soulstories.html')
	// oCMenu.makeMenu('sub41','top3','Testimonials','http://www.seatofthesoul.com/testimonials.html')
	oCMenu.makeMenu('sub42','top3','Job Opportunities','http://www.seatofthesoul.com/jobs.html')
	oCMenu.makeMenu('sub43','top3','Contact Us','http://www.seatofthesoul.com/contact.html')
                 
//Leave this line - it constructs the menu
oCMenu.construct()		
                  
					   
					
