/* CoolMenus 4 - default styles - end */
/******************* MENU NUMBER 2 **********************************/



/*** 
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
oCMenu.fromLeft=4
oCMenu.fromTop=250
//change to 0 for vertical
oCMenu.rows=0
//center the menu
oCMenu.menuPlacement=""
                                                             
oCMenu.offlineRoot="/" 
oCMenu.onlineRoot="/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
//higher z index =more toward front
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=0
//oCMenu.barWidth="100%"
//oCMenu.barHeight="menu" 
oCMenu.barHeight=30
//oCMenu.barClass="cl2Bar"
//oCMenu.barX=0 
//oCMenu.barY=0
//oCMenu.barBorderX=0
//oCMenu.barBorderY=0
//
//oCMenu.barBorderClass="cl2Level0border"

//Level properties - ALL properties have to be spesified in level 0
//oCMenu.level[0].fromTop=230
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=215
oCMenu.level[0].height=35

//must point the menus at different style classes if you want them to look different

oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].align="right"
oCMenu.level[0].rows=0
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].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
//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-2
//oCMenu.level[1].menuPlacement="right"
oCMenu.level[1].width=250
oCMenu.level[1].height=24
oCMenu.level[1].offsetX=-100
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].borderClass="cl2Level0border"

//oCMenu.level[1].align="center" 
/*"bottom": The sub menus of this level will come out on the top of this item
"top": The sub menus of this level will come out on the bottom of this item
"left": The sub menus of this level will come out on the right of this item
"right": The sub menus of this level will come out on the left of this item 
oCMenu.level[1].align="top"
//oCMenu.level[1].rows=0


//oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetX=0
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="cl2Level1border"
//oCMenu.level[1].zIndex=200

//
//oCMenu.level[1].zIndex=-1

/******************************************
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','','Required Notifiable Conditions','http://www.hcphes.org/dccp/Epidemiology/HCPHES_Notifiable%20Conditions%20May%202007.pdf','','','60','','','','')		

oCMenu.makeMenu('top0','','Home','http://www.hcphes.org/web2/opi/index.htm','','','','','','','')
oCMenu.makeMenu('top1','','Contact Us','http://www.hcphes.org/web2/opi/contact.htm','','','','','','','')
oCMenu.makeMenu('top2','','HCPHES Locations Map','http://www.hcphes.org/web2/opi/HCPHES Locations Map 2006.htm','','','','','','','')
oCMenu.makeMenu('top3','','News Releases','http://www.hcphes.org/hcpress/','','','','','','','')
//oCMenu.makeMenu('top2','','Top3','http://www.hcphes.org/dccp/','','','40','','','','')
	//oCMenu.makeMenu('top1','','DCCP Home','http://www.hcphes.org/dccp/')
//																	link				T	w	h
oCMenu.makeMenu('top4','','Public Health Information &#9658;','','','','','','','','')
oCMenu.makeMenu('sub40','top4','HCPHES Fact Sheets','http://www.hcphes.org/factsheets.htm')
oCMenu.makeMenu('sub41','top4','Health Tops A-Z','http://www.hcphes.org/web2/opi/Health%20Topics%20A-Z.htm')
oCMenu.makeMenu('sub42','top4','FAQ','http://www.hcphes.org/web2/opi/faq.htm')
	
	
		
oCMenu.makeMenu('top5','','Public Health Preparedness &#9658;')
	oCMenu.makeMenu('sub50','top5','Risk Communications Plan','http://www.hcphes.org/web2/opi/CERCP7152008.pdf')
	oCMenu.makeMenu('sub51','top5','Public Health Communications System','http://www.hcphes.org/web2/opi/community partners2.htm')
	oCMenu.makeMenu('sub52','top5','Speakers Bureau','http://www.hcphes.org/web2/opi/Speaker%20Bureau.htm')
	oCMenu.makeMenu('sub53','top5','Public Health Preparedness','http://www.hcphes.org/php2')
	oCMenu.makeMenu('sub54','top5','Citizen Preparedness All Hazards','http://www.hcphes.org/php/citizen/default.htm')

	
	

//


//Leave this line - it constructs the menu
oCMenu.construct()