// JavaScript Document
slideMenu = new createSlideMenu("slideMenu")

//Variables to set:
slideMenu.menuy=124//The top placement of the menu.
slideMenu.menux=2 //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 =193,
	height = 21,
	between = 2,
	className = "clSlideMenu0",
	classNameA = "clA0",
	regImage = "",
	roundImg = "",
	roundImg2 = "",
	subImg = "",
	subRound= "")
	
slideMenu.level[1] = new slideMenu_makeLevel(5,170,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(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','Overseas Department','overseasDepartment.html') 
		/*slideMenu.makeMenu('sub','Guidelines','#')
			slideMenu.makeMenu('sub2','Arts & Culture','ArtsandCultureGuidelines.pdf')
			slideMenu.makeMenu('sub2','Early Childhood','EarlyChildhoodGuidelines.pdf')			
			slideMenu.makeMenu('sub2','Health','HealthGuidelines.pdf')
		slideMenu.makeMenu('sub','Making an Application','Making an application to CHASE.pdf')*/

slideMenu.makeMenu('top','Eligibility Requirements','eligibity.html') 
//slideMenu.makeMenu('top','Guidelines for Application','Guidelines.html') 

slideMenu.makeMenu('top','Nationality & Citizenship','nationality.html') 
	/*slideMenu.makeMenu('sub','Projects','#')
	slideMenu.makeMenu('sub2','Completed','#')
	slideMenu.makeMenu('sub2','In Progress','#')*/
//slideMenu.makeMenu('top','Did You Know','Did_You_Know_Emancipation.html') 

slideMenu.makeMenu('top','Household Effects','personalHouseholdEffects.html')
	/*slideMenu.makeMenu('sub','Projects','#')
	slideMenu.makeMenu('sub2','Completed','#')
	slideMenu.makeMenu('sub2','In Progress','#')*/

slideMenu.makeMenu('top','Tools of Trade','toolsOfTrade.html') 
	/*slideMenu.makeMenu('sub','Projects','#')
	slideMenu.makeMenu('sub2','Completed','#')
	slideMenu.makeMenu('sub2','In Progress','#')*/
	/*slideMenu.makeMenu('sub','Norman Manley','manley.html')
	slideMenu.makeMenu('sub','Sir William Bustamante','Bustamante.html')
	slideMenu.makeMenu('sub','Sir Donald Sangster','Sangster.html')
	slideMenu.makeMenu('sub','Hugh Shearer','Shearer.html')
	slideMenu.makeMenu('sub','Michael Manley','michealManley.html')
	slideMenu.makeMenu('sub','Edward Seaga','seaga.html')
	slideMenu.makeMenu('sub','Percival James Patterson','PJPatterson.html')*/
	
	
//slideMenu.makeMenu('top','Top 40 Legislations','#')

slideMenu.makeMenu('top','Unaccompanied Baggage','ClearingUnaccompaniedBaggage.html') 
	/*slideMenu.makeMenu('sub','Projects','#')
	slideMenu.makeMenu('sub2','Completed','#')
	slideMenu.makeMenu('sub2','In Progress','#')*/
	/*slideMenu.makeMenu('sub','Emancipation','#')
	
			slideMenu.makeMenu('sub2','Governor General','GGEmancipationMessage.html')
			slideMenu.makeMenu('sub2','Prime Minister','PJEmancipationMessage.html')
			slideMenu.makeMenu('sub2','Leader of Opposition','seagaEmancipationMessage.html')
			
			slideMenu.makeMenu('sub','Independence','#')
	
			slideMenu.makeMenu('sub2','Governor General','GGIndependenceMessage.html')
			slideMenu.makeMenu('sub2','Prime Minister','PJIndependenceMessage.html')
			slideMenu.makeMenu('sub2','Leader of Opposition','seagaIndependenceMessage.html')*/
			
	//slideMenu.makeMenu('sub','Poems','')
	slideMenu.makeMenu('top','Importation of Items','#') 
	slideMenu.makeMenu('sub','Motor Vehicle','motorVehicleImportation.html')	
	slideMenu.makeMenu('sub','Pets','importationandOtherMatters.html#pets')
	slideMenu.makeMenu('sub','Plants','importationandOtherMatters.html#plants')
	slideMenu.makeMenu('sub','Firearms','importationandOtherMatters.html#firearms')
	slideMenu.makeMenu('sub','General Goods','importationandOtherMatters.html#gg')
	slideMenu.makeMenu('sub','Other Matters','#')
	slideMenu.makeMenu('sub2','Environmental Protection','importationandOtherMatters.html#ep')
	slideMenu.makeMenu('sub2','Penalties','importationandOtherMatters.html#p')
	slideMenu.makeMenu('sub2','Consumer Protection','importationandOtherMatters.html#cp')
	
slideMenu.makeMenu('top','Jamaica Customs','http://www.jacustoms.gov.jm/customs/index.htm','_blank') 

slideMenu.makeMenu('top','Contact Information','contactInformation.html') 





slideMenu.init()		



