/*** 
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

oCMenu.frames = 0

//New properties in 4.06 - Set to open and/or close the menu onclick
oCMenu.openOnClick=1
oCMenu.closeOnClick=0

//Menu properties   
oCMenu.pxBetween=0
oCMenu.fromLeft=0
oCMenu.fromTop=146
oCMenu.rows=2
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="/" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
oCMenu.barWidth="16"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=20
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=140
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=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=140 //oCMenu.level[0].width-2
oCMenu.level[1].height=15
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=140
oCMenu.level[2].height=15
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','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Home</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s1block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/','')
	
oCMenu.makeMenu('top1','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Book a Guest</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s2block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/form.php')
	
oCMenu.makeMenu('top2','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Become a Guest</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s3block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/newguest.php')

oCMenu.makeMenu('top3','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Job Opportunities</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s4block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/christianjob.php')

oCMenu.makeMenu('top5','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Internet Marketing</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s5block.gif" width="15" height="15"></td></tr></table>','http://www.newevolutionadvertising.com')


//oCMenu.makeMenu('top5','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Interview Categories</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s5block.gif" width="15" height="15"></td></tr></table>','#')
//	oCMenu.makeMenu('sub500','top5','Arts and Entertainment','http://www.specialguests.com/guests/data/AAEFullSummary.html')
//	oCMenu.makeMenu('sub501','top5','Currently in the News','http://www.specialguests.com/guests/data/CITNFullSummary.html')
//	oCMenu.makeMenu('sub502','top5','Financial and Economic','http://www.specialguests.com/guests/data/FAEFullSummary.html')
//	oCMenu.makeMenu('sub503','top5','Geopolitical','http://www.specialguests.com/guests/data/GEOFullSummary.html')
//	oCMenu.makeMenu('sub504','top5','Health','http://www.specialguests.com/guests/data/HFullSummary.html')
//	oCMenu.makeMenu('sub505','top5','Media Watch','http://www.specialguests.com/guests/data/MWFullSummary.html')
//	oCMenu.makeMenu('sub506','top5','Miscellaneous','http://www.specialguests.com/guests/data/MFullSummary.html')
//	oCMenu.makeMenu('sub507','top5','Natural Disasters','http://www.specialguests.com/guests/data/NDFullSummary.html')
//	oCMenu.makeMenu('sub508','top5','Political','http://www.specialguests.com/guests/data/PFullSummary.html')
//	oCMenu.makeMenu('sub509','top5','Religion and Family','http://www.specialguests.com/guests/data/RAFFullSummary.html')
//	oCMenu.makeMenu('sub510','top5','2nd Amendment Rights','http://www.specialguests.com/guests/data/SARFullSummary.html')
//	oCMenu.makeMenu('sub511','top5','Self Help/Relationships','http://www.specialguests.com/guests/data/SHRFullSummary.html')
//	oCMenu.makeMenu('sub512','top5','Science','http://www.specialguests.com/guests/data/SFullSummary.html')
//	oCMenu.makeMenu('sub513','top5','2nd Amendment Rights','http://www.specialguests.com/guests/data/SARFullSummary.html')
//	oCMenu.makeMenu('sub514','top5','Social Issues','http://www.specialguests.com/guests/data/SIFullSummary.html')
//	oCMenu.makeMenu('sub515','top5','Technology','http://www.specialguests.com/guests/data/TFullSummary.html')
//	oCMenu.makeMenu('sub516','top5','Terrorism','http://www.specialguests.com/guests/data/TERFullSummary.html')
//	oCMenu.makeMenu('sub517','top5','Upcoming Guests','http://www.specialguests.com/guests/data/UGFullSummary.html')

oCMenu.makeMenu('top6','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Guests/Topics</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s1block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/guests/data/print.html')




//oCMenu.makeMenu('top6','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Guest Lists</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s1block.gif" width="15" height="15"></td></tr></table>','#')
//	oCMenu.makeMenu('sub60','top6','Short Summaries','http://www.specialguests.com/guests/data/print.html')
//	oCMenu.makeMenu('sub61','top6','Detailed Backgrounds','http://www.specialguests.com/guests/data/printfullguest.html')
//	oCMenu.makeMenu('sub62','top6','Subscribe to the Top Guests Mailing List','http://www.specialguests.com/subscribe.php','',140,30)
	
oCMenu.makeMenu('top7','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;About Us</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s2block.gif" width="15" height="15"></td></tr></table>','#')
	oCMenu.makeMenu('sub70','top7','What makes Special Guests so special?','http://www.specialguests.com/special.php','',140,30)
	oCMenu.makeMenu('sub71','top7','Contact Us','http://www.specialguests.com/contactus.php')

//oCMenu.makeMenu('top8','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Search</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s3block.gif" width="15" height="15"></td></tr></table>','#')
//	oCMenu.makeMenu('sub80','top8','<b>Search by keywords</b>','http://specialguests.com/guests/searchnews.pl')
//	oCMenu.makeMenu('sub81','top8','Search by keywords and category','http://specialguests.com/guests/searchnews.pl','',140,30)
//	//oCMenu.makeMenu('sub82','top8','Browse by Category','#')

oCMenu.makeMenu('top8','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Search</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s3block.gif" width="15" height="15"></td></tr></table>','http://www.google.com/cse?cx=017904647613998833193%3Abjkqeyyyx9w&ie=UTF-8&q=&sa=Search+Our+Site')

//oCMenu.makeMenu('top9','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Media Training</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s4block.gif" width="15" height="15"></td></tr></table>','http://www.michaelraydressermediatraining.com/show/media-training/')

oCMenu.makeMenu('top9','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Radio Advertising</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s4block.gif" width="15" height="15"></td></tr></table>','http://www.hohumproductions.com/special_guests_ad_referral.php?afid=specialguests')




//oCMenu.makeMenu('top10','','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Newspaper Publicity</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s5block.gif" width="15" height="15"></td></tr></table>','http://www.specialguests.com/newspaper.php')

//oCMenu.makeMenu('top10','blank','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Social Media</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s5block.gif" width="15" height="15"></td></tr></table>','http://brandmanagement20.com/cmd.php?af=1045623')

oCMenu.makeMenu('top10','blank','<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="left">&nbsp;Social Media</td><td width="15" align="right"><img src="http://www.specialguests.com/images/s5block.gif" width="15" height="15"></td></tr></table>','http://brandmanagement20.com/BM20basic.html')


//Leave this line - it constructs the menu
oCMenu.construct()		
