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

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=2
oCMenu.fromLeft=0
oCMenu.fromTop=93 
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot= ""
oCMenu.resizeCheck=1 
oCMenu.wait=990 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="0%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=200
oCMenu.barY=80
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=85
oCMenu.level[0].height=15 
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=7
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+50
oCMenu.level[1].height=18
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=oCMenu.level[1].width+10
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"

//EXAMPLE SUB LEVEL[3] 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[3]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[3].width=oCMenu.level[2].width+10
oCMenu.level[3].height=18
oCMenu.level[3].offsetX=0
oCMenu.level[3].offsetY=0
oCMenu.level[3].regClass="clLevel2"
oCMenu.level[3].overClass="clLevel2over"
oCMenu.level[3].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','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Home&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/index.htm')
      
oCMenu.makeMenu('top1','','&nbsp;&nbsp;&nbsp;Archives&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/archives/archives.htm')
  oCMenu.makeMenu('sub10','top1','Shows 181-200','http://www.tellthetruthfaster.com/archives/shows181-200/archives181-200.htm')
  oCMenu.makeMenu('sub11','top1','Shows 161-180','http://www.tellthetruthfaster.com/archives/shows161-180/archives161-180.htm')
  oCMenu.makeMenu('sub12','top1','Shows 141-160','http://www.tellthetruthfaster.com/archives/shows141-160/archives141-160.htm')
  oCMenu.makeMenu('sub13','top1','Shows 121-140','http://www.tellthetruthfaster.com/archives/shows121-140/archives121-140.htm')
  oCMenu.makeMenu('sub14','top1','Shows 101-120','http://www.tellthetruthfaster.com/archives/shows101-120/archives101-120.htm')
  oCMenu.makeMenu('sub15','top1','Shows 081-100','http://www.tellthetruthfaster.com/archives/shows081-100/archives081-100.htm')
  oCMenu.makeMenu('sub16','top1','Shows 061-080','http://www.tellthetruthfaster.com/archives/shows061-080/archives061-080.htm')
  oCMenu.makeMenu('sub17','top1','Shows 041-060','http://www.tellthetruthfaster.com/archives/shows041-060/archives041-060.htm')
  oCMenu.makeMenu('sub18','top1','Shows 021-040','http://www.tellthetruthfaster.com/archives/shows021-040/archives021-040.htm')
  oCMenu.makeMenu('sub19','top1','Shows 001-020','http://www.tellthetruthfaster.com/archives/shows001-020/archives001-020.htm')

  
     
oCMenu.makeMenu('top2','','&nbsp;&nbsp;&nbsp;&nbsp;Webcast&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://kxam.com')
  
oCMenu.makeMenu('top3','','Sponsorship&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/sponsorship.htm')
  
oCMenu.makeMenu('top4','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;About Us&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/About.htm')
  
oCMenu.makeMenu('top5','','&nbsp;&nbsp;&nbsp;&nbsp;Articles&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/articles/articles.htm')
  oCMenu.makeMenu('sub50','top5','Breathe Fully','http://www.tellthetruthfaster.com/articles/articles-breathe.htm')
  oCMenu.makeMenu('sub51','top5','Election Depression','http://www.tellthetruthfaster.com/articles/articles-election.htm')
  oCMenu.makeMenu('sub52','top5','Encouraging Radio','http://www.tellthetruthfaster.com/articles/articles-encourage.htm')
  oCMenu.makeMenu('sub53','top5','Intimacy/Relationships','http://www.tellthetruthfaster.com/articles/articles-intimacy.htm')
  oCMenu.makeMenu('sub54','top5','Another Day at Baths','http://www.tellthetruthfaster.com/articles/articles-bathhouse.htm')
  oCMenu.makeMenu('sub55','top5','Convicted Therapists','http://www.tellthetruthfaster.com/articles/articles-latimes.htm')
  oCMenu.makeMenu('sub56','top5','1997 Global Summit','http://www.tellthetruthfaster.com/articles/articles-delahuerta.htm')
oCMenu.makeMenu('top6','','&nbsp;&nbsp;&nbsp;&nbsp;Contact&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="FFFFFF">|</font>','http://www.tellthetruthfaster.com/contact.php')

oCMenu.makeMenu('top7','','&nbsp;&nbsp;MFCC.com','http://www.mfcc.com')
    

    

 
	

//Leave this line - it constructs the menu
oCMenu.construct()		
