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

oCMenu.frames=0

//Menu properties   
oCMenu.pxBetween=40
oCMenu.fromLeft=100
oCMenu.fromRight=0 
oCMenu.fromTop=100   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="file:///c:/inetpub/wwwroot/scripts/coolmenus/" 
oCMenu.onlineRoot="coolmenus4/" 
oCMenu.resizeCheck=1 
oCMenu.wait=1000 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=600

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth=850
oCMenu.barWidth=800
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0
oCMenu.barY=100
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=70
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" 

//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)
// default: oCMenu.level[1].width=oCMenu.level[0].width-4
oCMenu.level[1].width=oCMenu.level[0].width
oCMenu.level[1].height=18
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=3
oCMenu.level[1].borderY=0
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-12
oCMenu.level[1].offsetY=4
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"
oCMenu.level[2].borderX=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','','Home',"http://www.uttheatre.org/index.php",'',40)

/*oCMenu.makeMenu('top9','','Bulletins',"http://www.uttheatre.org/studentbulletins.php",'',50) */

oCMenu.makeMenu('top1','','Directories','http://www.uttheatre.org/directories.htm','',70)
	oCMenu.makeMenu('sub01','top1','Total Alpha','http://www.uttheatre.org/alpha.php','',100)
	oCMenu.makeMenu('sub02','top1','Staff Alpha','http://www.uttheatre.org/staffalpha.php','',100)
	oCMenu.makeMenu('sub03','top1','Staff','http://www.uttheatre.org/cbtstaff.htm','',100)
	oCMenu.makeMenu('sub04','top1','Faculty','http://www.uttheatre.org/faculty.php','',100)
	oCMenu.makeMenu('sub05','top1','MFAs','http://www.uttheatre.org/mfas.php','',100)
	oCMenu.makeMenu('sub06','top1','Helpful #s','http://www.uttheatre.org/othernumbers.php','',100)
	
oCMenu.makeMenu('top2','','At a Glance','http://www.uttheatre.org/ataglanceFY09.php','',70)
/*	oCMenu.makeMenu('sub22','top2','FY07 Production Calendar','http://www.uttheatre.org/FY07%20Season%20Calendar.pdf','_blank',150)	  
	oCMenu.makeMenu('sub24','top2','FY08 Season at a Glance','http://www.uttheatre.org/ataglance.htm','',150)*/
/*	oCMenu.makeMenu('sub25','top2','FY07 Artistic Teams','../FY07%20Production%20Teams.pdf','_blank',150)	  */
/*	oCMenu.makeMenu('sub26','top2','FY08 Shows','','',150)
		oCMenu.makeMenu('sub101','sub26','The Honky Tonk Angels','http://www.uttheatre.org/honky.htm','',150,0)
		oCMenu.makeMenu('sub102','sub26','Major Barbara','http://www.uttheatre.org/MajorBarbara.htm','',150,0)
		oCMenu.makeMenu('sub103','sub26','Antigone','http://www.uttheatre.org/Antigone.htm','',150,0)
		oCMenu.makeMenu('sub104','sub26','A Christmas Carol','http://www.uttheatre.org/ChristmasCarol.htm','',150,0)
		oCMenu.makeMenu('sub105','sub26','The Life of Galileo','http://www.uttheatre.org/Galileo.htm','',150,0)
		oCMenu.makeMenu('sub106','sub26','Intimate Apparel','http://www.uttheatre.org/IntimateApparel.htm','',150,0)
		oCMenu.makeMenu('sub107','sub26','Stop Kiss','http://www.uttheatre.org/StopKiss.htm','',150,0)
		oCMenu.makeMenu('sub108','sub26','Guys and Dolls','http://www.uttheatre.org/GuysAndDolls.htm','',150,0)
	oCMenu.makeMenu('sub27','top2','FY07 Shows','','',150)
		oCMenu.makeMenu('sub202','sub27','Born Yesterday','http://www.uttheatre.org/bornfeature.htm','',150,0)
		oCMenu.makeMenu('sub203','sub27','All My Sons','http://www.uttheatre.org/amsfeature.htm','',150,0)
		oCMenu.makeMenu('sub204','sub27','The Laramie Project','http://www.uttheatre.org/laramiefeature.htm','',150,0)
		oCMenu.makeMenu('sub205','sub27','A Year With Frog & Toad','http://www.uttheatre.org/frogfeature.htm','',150,0)
		oCMenu.makeMenu('sub206','sub27','Fences','http://www.uttheatre.org/fencesfeature.htm','',150,0)
		oCMenu.makeMenu('sub207','sub27','Assassins','http://www.uttheatre.org/assassinsfeature.htm','',150,0)
		oCMenu.makeMenu('sub208','sub27','A Shakespeare Project','http://www.uttheatre.org/learfeature.htm','',150,0)
		oCMenu.makeMenu('sub209','sub27','A Flea in her Ear','http://www.uttheatre.org/flea.htm','',150,0)
	oCMenu.makeMenu('sub28','top2','Reading Series / Macbeth','','',150)
		oCMenu.makeMenu('sub251','sub28','Parade','http://www.uttheatre.org/parade.htm','',150,0)
		oCMenu.makeMenu('sub252','sub28','I Just Stopped By to See the Man','http://www.uttheatre.org/StoppedToSee.htm','',150,0)
		oCMenu.makeMenu('sub253','sub28','The Prince of Homburg','http://www.uttheatre.org/homburg.htm','',150,0)
		oCMenu.makeMenu('sub254','sub28','Crocodiles','http://www.uttheatre.org/Crocodiles.htm','',150,0)
		oCMenu.makeMenu('sub255','sub28','Macbeth','http://www.uttheatre.org/Macbeth.htm','',150,0)	  */

oCMenu.makeMenu('top3','','Academics','','',70)
	oCMenu.makeMenu('sub31','top3','Schedules','','',80)
		oCMenu.makeMenu('sub301','sub31','Theatre Class Schedule by Time','http://www.uttheatre.org/Class%20Schedule%20by%20Time.php','',190,0) 
		oCMenu.makeMenu('sub302','sub31','Current Theatre Timetable','http://www.uttheatre.org/Theatre%20Fall%2008.pdf','',190,0) 	  
		oCMenu.makeMenu('sub303','sub31','UT Building Codes','http://www.uttheatre.org/UT%20Building%20Codes.htm','',190,0) 
		oCMenu.makeMenu('sub305','sub31','Campus Map','http://www.uttheatre.org/campus-map-2006-07.pdf','_blank',190,0) 
	oCMenu.makeMenu('sub32','top3','Calendars','','',80)
/*		oCMenu.makeMenu('sub320','sub32','Academic Calendar 06-07','http://www.uttheatre.org/University%20of%20Tennessee%20Academic%20Calendar.htm','',190,0) 	*/
		oCMenu.makeMenu('sub321','sub32','Student Calendar Fall 08','http://www.uttheatre.org/UT%20Calendar%20Fall%2008.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub322','sub32','Academic Calendars','http://registrar.tennessee.edu/academic_calendar/','_blank',190,0) 
		oCMenu.makeMenu('sub324','sub32','Scheduled Closings','http://www.uttheatre.org/scheduled_closings.php','',190,0) 
/*		oCMenu.makeMenu('sub325','sub32','Key Date Calendar Summer 06','http://www.uttheatre.org/06_Summ_Cal_KD.pdf','_blank',190,0)   */
/*		oCMenu.makeMenu('sub326','sub32','Key Dates Calendar Summer 06','http://www.uttheatre.org/key_dates_summer.pdf','_blank',190,0)   */
/*		oCMenu.makeMenu('sub327','sub32','Financial Calendar Summer 06','http://www.uttheatre.org/summer06_finan.pdf','_blank',190,0) 	*/
	oCMenu.makeMenu('sub33','top3','Catalogs','','',80)
		oCMenu.makeMenu('sub330','sub33','Undergraduate Catalog','http://diglib.lib.utk.edu/dlc/catalog/images/u/2008/u.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub331','sub33','Arts & Sciences Und. Catalog','http://diglib.lib.utk.edu/dlc/catalog/images/u/2008/u_as.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub332','sub33','Courses of Instruction','http://diglib.lib.utk.edu/dlc/catalog/images/u/2008/u_courses.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub333','sub33','Undergraduate Majors, Degrees','http://diglib.lib.utk.edu/dlc/catalog/images/u/2008/u_mmc.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub334','sub33','Undergraduate Catalog Index','http://diglib.lib.utk.edu/dlc/catalog/images/u/2008/u_index.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub33x','sub33','    --------------------------------','','',150,'','','','','','','','nolink')
		oCMenu.makeMenu('sub335','sub33','Graduate Studies Catalog','http://diglib.lib.utk.edu/dlc/catalog/images/g/2008/g.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub336','sub33','Arts & Sciences Graduate Catalog','http://diglib.lib.utk.edu/dlc/catalog/images/g/2008/g_as.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub337','sub33','Graduate Majors, Degrees','http://diglib.lib.utk.edu/dlc/catalog/images/g/2008/g_mdp.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub33y','sub33','    --------------------------------','','',150,'','','','','','','','nolink')
		oCMenu.makeMenu('sub338','sub33','Official UT Glossary','http://www.uttheatre.org/u_gloss.pdf','_blank',190,0) 
	oCMenu.makeMenu('sub34','top3','Information','','',80)
		oCMenu.makeMenu('sub340','sub34','Student Handbook','http://www.uttheatre.org/SOSrevised.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub341','sub34','Faculty Handbook','http://www.uttheatre.org/FacultyHandbook.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub342','sub34','Theatre MFA Handbook','http://www.uttheatre.org/MFA%20Handbook.pdf','_blank',190,0) 
		oCMenu.makeMenu('sub343','sub34','Hilltopics','http://dos.utk.edu/files/hilltopics_08-09.pdf','_blank',190,0) 
	
oCMenu.makeMenu('top4','','Useful Stuff','','',74)
	oCMenu.makeMenu('sub51','top4','Conversions','http://www.uttheatre.org/conversions.php','',140,0) 
	oCMenu.makeMenu('sub52','top4','Del.icio.us Links','http://www.uttheatre.org/delicious.php','',140,0) 
/*	oCMenu.makeMenu('sub52','top4','Links - Theatre','http://www.uttheatre.org/linksTheatre.htm','',140,0) 
	oCMenu.makeMenu('sub53','top4','Links - Local','http://www.uttheatre.org/linksLocal.htm','',140,0) 
	oCMenu.makeMenu('sub54','top4','Links - Other','http://www.uttheatre.org/linksOther.htm','',140,0) */
	oCMenu.makeMenu('sub55','top4','Campus Map','http://www.uttheatre.org/campus-map-2006-07.pdf','_blank',140,0) 
	oCMenu.makeMenu('sub56','top4','Subscriber Handbook','http://www.uttheatre.org/Subscriber%20Handbook.pdf','_blank',140,0) 
	oCMenu.makeMenu('sub57','top4','Building Drawings','','',140,0) 
		oCMenu.makeMenu('sub540','sub57','CBT Basement','http://www.uttheatre.org/CBT_Basement.pdf','_blank',140,0) 
		oCMenu.makeMenu('sub541','sub57','CBT First Floor','http://www.uttheatre.org/CBT_First.pdf','_blank',140,0) 
		oCMenu.makeMenu('sub542','sub57','CBT Second Floor','http://www.uttheatre.org/CBT_Second.pdf','_blank',140,0) 
		oCMenu.makeMenu('sub543','sub57','CBT Third Floor','http://www.uttheatre.org/CBT_Third.pdf','_blank',140,0) 
		oCMenu.makeMenu('sub544','sub57','Carousel Main Floor','http://www.uttheatre.org/Carousel.pdf','_blank',140,0) 
		oCMenu.makeMenu('sub545','sub57','Carousel Basement','http://www.uttheatre.org/Carousel_Basement.pdf','_blank',140,0) 
	oCMenu.makeMenu('sub58','top4','Crossword Puzzle','http://www.uttheatre.org/cbtxword.php','_blank',140,0) 

oCMenu.makeMenu('top5','','Blog','http://www.uttheatre.org/wordpress/','',74)	
//Leave this line - it constructs the menu
oCMenu.makeMenu('top6','','Photos','http://www.uttheatre.org/flickr.php','',74)	


oCMenu.construct()	
