// JavaScript Document
slideMenu = new createSlideMenu("slideMenu")

//Variables to set:
slideMenu.menuy=117//The top placement of the menu.
slideMenu.menux=1 //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 =200,
	height = 21,
	between = 2,
	className = "clSlideMenu0",
	classNameA = "clA0",
	regImage = "",
	roundImg = "",
	roundImg2 = "",
	subImg = "",
	subRound= "")
	
slideMenu.level[1] = new slideMenu_makeLevel(2,198,27,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(10,165,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(15,160,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,130,19,2,"clSlideMenu4","clA4","level4_regular.gif", "level4_round2.gif","level4_round.gif","level4_sub.gif", "level4_sub_round.gif")
slideMenu.level[5] = new slideMenu_makeLevel(50,130,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','Home','index.html') 
slideMenu.makeMenu('top','Back to JIS','http://www.jis.gov.jm') 
slideMenu.makeMenu('top','Profile','profile.html') 
slideMenu.makeMenu('top','Media Accreditation Form','http://www.jis.gov.jm/HerbAccreditationForm.pdf') 
slideMenu.makeMenu('top','Programme','#') 

slideMenu.makeMenu('top','Messages','#') 
		//slideMenu.makeMenu('sub','Governor General','GGMessage.html')
		slideMenu.makeMenu('sub','Prime Minister','statement_PM.html')
		slideMenu.makeMenu('sub','Minister of Information, Culture, Youth & Sports','Statement_Minister_Information.html')
		//slideMenu.makeMenu('sub','Leader of the Opposition','BruceMessage.html')
		//slideMenu.makeMenu('sub','Former Prime Minister','PJMessage.html')
		
slideMenu.makeMenu('top','Tributes','#') 
	//slideMenu.makeMenu('sub','Prime Minister','PMTribute.html')
	//slideMenu.makeMenu('sub','Institute of Jamaica','instituteOfJamaica.html')

/*slideMenu.makeMenu('top','Poems','#')
		slideMenu.makeMenu('sub','Colonization in Reverse...','colonizationInReverse.html')
		slideMenu.makeMenu('sub','Noh Lickle Twang...','NOHLICKLETWANG.html')
		slideMenu.makeMenu('sub','Cuss Cuss...','CussCuss.html')
		slideMenu.makeMenu('sub','Dry Foot Bwoy...','dryFootBoy.html')
		slideMenu.makeMenu('sub','Bans A Killin...','BansAKillin.html')
	
slideMenu.makeMenu('top','JIS Radio Features','#') 
	slideMenu.makeMenu('sub','Feature 1','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE1.rm')
	slideMenu.makeMenu('sub','Feature 2','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE2.rm')
	slideMenu.makeMenu('sub','Feature 3','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE3.rm')
	slideMenu.makeMenu('sub','Feature 4','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE4.rm')
	slideMenu.makeMenu('sub','Feature 5','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE5.rm')
	slideMenu.makeMenu('sub','Feature 6','rtsp://qcs3.qcslink.com/JIS/MISSLOUFEATURE6.rm')*/
	

slideMenu.makeMenu('top','News Releases','#') 
	slideMenu.makeMenu('sub','Miami Condolence Book...','miami.html')
	slideMenu.makeMenu('sub','Medical Personnel will be...','medical.html')
	slideMenu.makeMenu('sub','Wake for Herb...','wakeForHerb.html')
	slideMenu.makeMenu('sub','McKenley\'s Body to Lie in State...','lie.htm')
	slideMenu.makeMenu('sub','Funeral service for McKenley...','funeralService.html')
	slideMenu.makeMenu('sub','New York Condolence Book...','condolenceBook.html')
	slideMenu.makeMenu('sub','Dacosta Cup Finals...','dacostaCupFinals.html')
	slideMenu.makeMenu('sub','Three Days of Mourning...','threedays.html')
	slideMenu.makeMenu('sub','Toronto Condolence Book...','toronto.html')
	slideMenu.makeMenu('sub','Herb McKenley to be buried...','burial.html')
	slideMenu.makeMenu('sub','PM pays tribute...','PMPaysTribute.html')

slideMenu.init()		



