
//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=3  // AN - the line between each text button- example: Getting Started and APrograms
oCMenu.fromLeft=5  //AN - Move the menu over the left (control the left position of the menu)
oCMenu.fromTop=90  //AN - Move the menu up or down: ocMenu.formTop=10 -  org.
oCMenu.rows=1       //AN- Set the menu in 1 row...
oCMenu.menuPlacement="left" //AN- set the whole menu to the left side of the screen
                                                             
oCMenu.offlineRoot="file:///C|/temp/stb/InverHills/" 
oCMenu.onlineRoot="../InverHills/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background BAR properties
oCMenu.useBar=1 //AN- 1 will set the background of the bar
oCMenu.barWidth="768"
//oCMenu.barHeight="menu" 
oCMenu.barHeight="23"
oCMenu.barClass="clBar"
oCMenu.barX=0
oCMenu.barY=87 //AN- move the background bar up or down - Set the background is WHITE - makes the line between the Header art and primary menu
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=125 //AN - Primary Menu- make it longer or shorter 
oCMenu.level[0].height=18 
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" //AN- Set the 1st level botton...it views under the menu (main text)

//dynamic effect (controllable for each level)
//AN - if we don't want it fading, then comment this lines out
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)" 

//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-0 //AN- Make a submenu short or long...
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) 

MODIFICATY AREA
*************************************/
oCMenu.makeMenu('top1','','&nbsp;&nbsp; IHCC Home Page','http://www.inverhills.edu','',110,0,0)

oCMenu.makeMenu('top2','','&nbsp;&nbsp; Technology Services','http://depts.inverhills.edu/Technology/default.htm','',140,0)

oCMenu.makeMenu('top3','','&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Training','http://depts.inverhills.edu/Technology/instruction/default.htm','',95,0)
	
oCMenu.makeMenu('top4','','&nbsp;&nbsp; Computing & Network Services','http://depts.inverhills.edu/Technology/network/default.htm','',200,0)
		

oCMenu.makeMenu('top5','','&nbsp;&nbsp;&nbsp; Media Services','http://depts.inverhills.edu/Technology/media/default.htm','',112,0)
	
oCMenu.makeMenu('top6','','&nbsp; Computer Lab','http://depts.inverhills.edu/computerlab/','',95,0)

//**************END HERE************************

//Leave this line - it constructs the menu
oCMenu.construct()	


/*****************************************************************************
Copyright (c) 2001 Thomas Brattli (webmaster@dhtmlcentral.com)

DHTML coolMenus - Get it at coolmenus.dhtmlcentral.com
Version 4.0_beta
This script can be used freely as long as all copyright messages are
intact.

******************************************************************************/
// Courtesy of SimplytheBest.net - http://simplythebest.net/scripts/