slideMenu = new createSlideMenu("slideMenu")
	
	//Variables to set:
	slideMenu.menuy=260 //The top placement of the menu.
	slideMenu.menux=10 //The left placement of the menu
	slideMenu.useImages = 0 //Are you using images or not?
	slideMenu.pxspeed=16 //The pixel speed of the animation
	slideMenu.timspeed=25 //The timer speed of the animation
	slideMenu.inset =0 //How much the selected elements should pop to the left
	slideMenu.arrow="clArrow"
	
	//Needed dummy classes
	slideMenu.bgClass =	"slideMenuBG"
	slideMenu.txtClass = "slideMenuText"
	
	//Level properties - ALL properties have to be spesified in level 0
	//This works the same way as the CM4 script (if you have seen it)
	slideMenu.level[0] = new slideMenu_makeLevel(
		left = 0,
		width = 140,
		height = 21,
		between = 2,
		className = "clSlideMenu0",
		classNameA = "clA0",
		regImage = "",
		roundImg = "",
		roundImg2 = "",
		subImg = "",
		subRound= "")
		
	slideMenu.level[1] = new slideMenu_makeLevel(10,150,20,2,"clSlideMenu1","clA1","level1_regular.gif","level1_round2.gif","level1_round.gif","level1_sub.gif", "level1_sub_round.gif")
	slideMenu.level[2] = new slideMenu_makeLevel(20,150,18,2,"clSlideMenu2","clA2","level2_regular.gif","level2_round2.gif","level2_round.gif", "level2_sub.gif", "level2_sub_round.gif")
	slideMenu.level[3] = new slideMenu_makeLevel(30,110,20,2,"clSlideMenu3","clA3","level3_regular.gif","level3_round2.gif","level3_round.gif","level3_sub.gif","level3_sub_round.gif")
	slideMenu.level[4] = new slideMenu_makeLevel(40,100,19,2,"clSlideMenu4","clA4","level4_regular.gif", "level4_round2.gif","level4_round.gif","level4_sub.gif", "level4_sub_round.gif")
	
	//Image preload --- leave this
	for(var i=0;i<slideMenu.level;i++){
		var l = slideMenu.level[i]
		new preLoadBackgrounds(l.regImage,l.roundImg,l.roundImg2,l.subImg,l.subRound)
	}
	
	//Menu 1
	slideMenu.makeMenu('top','Philosophy/Safety','../philosophy.html') //1st item
	
	slideMenu.makeMenu('top','Designs')// item#2
		slideMenu.makeMenu('sub','Alpine Towers Designs','../photos/index.html')
			slideMenu.makeMenu('sub','Alpine Towers Series','../photos/atseries.html')
			slideMenu.makeMenu('sub','Diamond Series','../photos/diamondseries.html')
			slideMenu.makeMenu('sub','Carolina Series','../photos/carolinaseries.html')
			slideMenu.makeMenu('sub','Indoor Series','../photos/indoorseries.html')
			slideMenu.makeMenu('sub','Performance Series','../photos/performanceseries.html')
			slideMenu.makeMenu('sub','Elevate Series','../photos/elevateseries.html')
			slideMenu.makeMenu('sub','Initiative and Low Element Series','../photos/lowelementseries.html')
			slideMenu.makeMenu('sub','Adventure Complex Series','../photos/adventurecomplex.html')
	
	slideMenu.makeMenu('top','Training Calendar','http://www.theadventuregroup.com/trainingcalendar.html') 
	
	slideMenu.makeMenu('top','Locations')// item#4
		slideMenu.makeMenu('sub','USA','../locations.html')
		slideMenu.makeMenu('sub','International','../locations.html')
	
	slideMenu.makeMenu('top','Equipment','http://www.adventurehardware.com')// item#6
	
	slideMenu.makeMenu('top','Leadership','../atistaff.html')// item#7
	
	slideMenu.makeMenu('top','Contact Us','../contactus.html')// item#8
		
	slideMenu.makeMenu('top','Links')// item#9
		slideMenu.makeMenu('sub','The Adventure Group')
			slideMenu.makeMenu('sub2','Adventure Hardware','http://www.adventurehardware.com')
			slideMenu.makeMenu('sub2','Teamwork & Teamplay','http://www.teamworkandteamplay.com')
			slideMenu.makeMenu('sub2','Cornerstone Designs Inc.','http://www.cornerstonedesignsinc.com')
			slideMenu.makeMenu('sub2','The Adventure Group','http://www.theadventuregroup.com')
		slideMenu.makeMenu('sub','All Links','../links.html')
	
	slideMenu.makeMenu('top','Course Manager')// item#10
		slideMenu.makeMenu('sub','Main Page','index.html')
		slideMenu.makeMenu('sub','Inspections','inspection.html')
		slideMenu.makeMenu('sub','Newsletter','newsletter.html')
		slideMenu.makeMenu('sub','Employment','employment.html')
		slideMenu.makeMenu('sub','Risk Management','riskmanagementforms.html')
		slideMenu.makeMenu('sub','Equipment Specials','http://adventurehardware.com/specials.html')
		slideMenu.makeMenu('sub','Photos','buyphotos.html')
		
	slideMenu.makeMenu('top','Home','../index.html')// item#11
