
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=10
oCMenu.fromLeft=20 
oCMenu.fromTop=0   
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="file:///C|/temp/stb/scripts/coolmenus/" 
oCMenu.onlineRoot="../scripts/coolmenus/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="102%"
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 specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=110
oCMenu.level[0].height=22 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=0
oCMenu.level[0].borderY=0
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"

//dynamic effect (controllable for each level)
oCMenu.level[0].clippx=2
oCMenu.level[0].cliptim=2
//special animation filters (IE5.5+ only, controllable for each level)
oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 

//Other special animation filters (IE5.5+ only, controllable for each level)
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Barn(duration=0.5,orientation=horizontal)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Blinds(duration=0.5,bands=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.CheckerBoard(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.GradientWipe(duration=0.5,wipeStyle=0)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=STAR)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Iris(duration=0.5,irisStyle=CIRCLE)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Pixelate(duration=0.5,maxSquare=40)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Wheel(duration=0.5,spokes=5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.RandomDissolve(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Spiral(duration=0.5)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Stretch(duration=0.5,stretchStyle=push)"
//oCMenu.level[0].filter="progid:DXImageTransform.Microsoft.Strips(duration=0.5,motion=rightdown)"


//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-4
oCMenu.level[1].height=18
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=0
oCMenu.level[1].borderY=0
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"
//dynamic effect
oCMenu.level[1].clippx=2
oCMenu.level[1].cliptim=2
//special animation filters
oCMenu.level[1].filter="progid:DXImageTransform.Microsoft.Fade(duration=0.5)" 


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to specify 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=18
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('top0','','My Savior God','http://www.mysaviorgod.com/index.html','')
	oCMenu.makeMenu('sub00','top0','Music Pages','http://mysaviorgod.com/music/index.htm')
	oCMenu.makeMenu('sub01','top0','Blog Pages >>','#')
		oCMenu.makeMenu('sub001','sub01','Gods Blog Site','http://www.godsblogsite.com'
,'',140,0)
		oCMenu.makeMenu('sub002','sub01','God Touches Hearts','http://www.godtoucheshearts.com','',140,0)
		oCMenu.makeMenu('sub003','sub01','Wedding Ideas','http://www.affordableoccasion.com','',140,0)
		oCMenu.makeMenu('sub004','sub01','Guide For Love','http://www.guideforlove.com','',140,0)
		oCMenu.makeMenu('sub005','sub01','Baby Shower Ideas','http://www.giveababyshower.com','',140,0)
		oCMenu.makeMenu('sub006','sub01','New & Things','http://www.newsandthings.com','',140,0)
		oCMenu.makeMenu('sub007','sub01','New Baby Momma','http://www.newbabymomma.com','',140,0)
		oCMenu.makeMenu('sub008','sub01','HowNowBrownCow','http://www.hownowbrowncowblog.com','',140,0)
		
oCMenu.makeMenu('top1','','Articles','http://www.mysaviorgod.com/articles/index.html')
	oCMenu.makeMenu('sub09','top1','The Message','http://www.mysaviorgod.com/articles/message.html')
	oCMenu.makeMenu('sub10','top1','The Pillow','http://www.mysaviorgod.com/articles/pillow.html')
	oCMenu.makeMenu('sub11','top1','Fear & Worry','http://www.mysaviorgod.com/articles/fear.html')
	oCMenu.makeMenu('sub12','top1','My Testamony','http://www.mysaviorgod.com/articles/testamony.html')
	oCMenu.makeMenu('sub13','top1','Choices','http://www.godtoucheshearts.com/2008/06/28/choices/')
	oCMenu.makeMenu('sub14','top1','Forgive Ourselves','http://www.godtoucheshearts.com/2007/10/24/how-to-forgive-ourselves/')
	oCMenu.makeMenu('sub15','top1','PEACE BE STILL','http://www.godtoucheshearts.com/2009/02/02/peace-be-still/')
	
oCMenu.makeMenu('top2','','Personal Help','http://mysaviorgod.com/help/help.html')
	oCMenu.makeMenu('sub16','top2','SuicidePrevention','http://www.mysaviorgod.com/help/suicide.html')
	oCMenu.makeMenu('sub17','top2','Self-Injury','http://www.mysaviorgod.com/help/hurt.html')
	oCMenu.makeMenu('sub18','top2','Depression','http://www.mysaviorgod.com/help/depression.html')
	oCMenu.makeMenu('sub19','top2','Abuse / Abused','http://www.mysaviorgod.com/help/abused.html')
	oCMenu.makeMenu('sub20','top2','Abortion','http://www.mysaviorgod.com/help/baby.html')
	oCMenu.makeMenu('sub21','top2','Family Issues','http://www.mysaviorgod.com/help/issues.html')
	oCMenu.makeMenu('sub22','top2','Addictions >>','http://www.mysaviorgod.com/help/help.html')
		oCMenu.makeMenu('sub009','sub22','Porn','http://www.mysaviorgod.com/help/porno.html','',140,0)
		oCMenu.makeMenu('sub010','sub22','Drugs','http://www.mysaviorgod.com/help/drugs.html','',140,0)
		oCMenu.makeMenu('sub011','sub22','Alcohol','http://www.mysaviorgod.com/help/alcohol.html','',140,0)
	oCMenu.makeMenu('sub23','top2','Need Prayer?','http://www.ourprayer.org/prayerrequest')	
	
oCMenu.makeMenu('top3','','Religious Gifts','http://www.mysaviorgod.com/pages/gifts.htm')
	oCMenu.makeMenu('sub24','top3','Gifts','http://www.mysaviorgod.com/pages/gifts.htm')
	oCMenu.makeMenu('sub25','top3','Books','http://www.mysaviorgod.com/pages/books.htm')
	oCMenu.makeMenu('sub26','top3','Music','http://www.mysaviorgod.com/pages/music.htm')
	oCMenu.makeMenu('sub27','top3','Movies','http://www.mysaviorgod.com/pages/movies.htm')
	oCMenu.makeMenu('sub28','top3','Apparel','http://www.mysaviorgod.com/pages/apparel.htm')
	oCMenu.makeMenu('sub29','top3','Christening Shop','http://www.pjatr.com/t/2-11453-29076-17927')
	oCMenu.makeMenu('sub30','top3','Creation Ministry','http://www.shareasale.com/r.cfm?b=137397&u=314845&m=18737&urllink=&afftrack=')
	oCMenu.makeMenu('sub31','top3','Christian Cash Assistance','http://www.pntrs.com/t/2-4672-29076-6815')
		
oCMenu.makeMenu('top4','','Social Networking','http://www.mysaviorgod.com/pages/social.htm')
	oCMenu.makeMenu('sub32','top4','Singles Networks','http://www.mysaviorgod.com/pages/relations.htm')
	oCMenu.makeMenu('sub33','top4','Underground Jesus Network','http://undergroundjesus.ning.com/')
	oCMenu.makeMenu('sub34','top4','Xianz','http://www.xianz.com/')
	oCMenu.makeMenu('sub35','top4','Faith Space','http://www.faith-space.com/')
	oCMenu.makeMenu('sub36','top4','Christian Mom','http://christianmom.com/')
	oCMenu.makeMenu('sub37','top4','True 2 Ourselves','http://www.true2ourselves.com/')
	oCMenu.makeMenu('sub38','top4','God Tube','http://www.godtube.com/')
	oCMenu.makeMenu('sub39','top4','VideoPile','http://www.videopile.com/')
	oCMenu.makeMenu('sub40','top4','Your Christian Space','http://www.yourchristianspace.com/')
	oCMenu.makeMenu('sub41','top4','ShoutLife','http://shoutlife.com/')

oCMenu.makeMenu('top5','','Partners/Friends','http://www.mysaviorgod.com/info/links.html')
	oCMenu.makeMenu('sub42','top5','Popular Site Links','http://www.popularsitelinks.com')
	oCMenu.makeMenu('sub43','top5','Family Christian Store','http://www.jdoqocy.com/click-3239287-10522133')
	oCMenu.makeMenu('sub44','top5','Expressly eBooks','http://www.expresslyebooks.com')
	oCMenu.makeMenu('sub45','top5','Byte Speak','http://www.bytespeak.com')
	oCMenu.makeMenu('sub46','top5','We Design Sites','http://www.jbtgraphicdesign.com')
	oCMenu.makeMenu('sub47','top5','Pamper Yourself','http://www.thebodypampering.com/blog/')
	oCMenu.makeMenu('sub48','top5','Recipes Nook','http://www.therecipesnook.com')
	oCMenu.makeMenu('sub49','top5','Get Templates','http://www.gettemplatesnow.com')
	oCMenu.makeMenu('sub50','top5','Freebies Locator','http://www.freebieslocator.com/')
	oCMenu.makeMenu('sub51','top5','Internet Filtering','http://www.optenetpc.com/free-parental-controls-trial.html?aff_id=1961')
	oCMenu.makeMenu('sub52','top5','Find a Soulmate','http://bigchurch.com/go/g1047783l')

oCMenu.makeMenu('top6','','New & Current','http://www.mysaviorgod.com/info/new.html')
	oCMenu.makeMenu('sub53','top6','Bible on a Page','http://www.mysaviorgod.com/pages/bible.html')
	oCMenu.makeMenu('sub54','top6','Cancer & Health','http://www.mysaviorgod.com/pages/cancer.html')
	oCMenu.makeMenu('sub55','top6','Internet Safety','http://www.optenetpc.com/free-parental-controls-trial.html?aff_id=1961')
	oCMenu.makeMenu('sub56','top6','Teens & Youth','http://www.mysaviorgod.com/pages/teens.html')
	oCMenu.makeMenu('sub57','top6','Christian Sites','http://www.mysaviorgod.com/pages/sites.htm')
	oCMenu.makeMenu('sub58','top6','Religious News','http://www.mysaviorgod.com/pages/news.html')
	oCMenu.makeMenu('sub59','top6','My Blog Life','http://www.mybloglife.com')
	oCMenu.makeMenu('sub60','top6','Witnessing Signs','http://www.witnessingsigns.com')
	oCMenu.makeMenu('sub61','top6','Altarcation','http://www.altarcation.com')

//Leave this line - it constructs the menu
oCMenu.construct()	
