//Variables to set
between=25 //The pixel between the menus and the submenus
mainheight=25 //The height of the mainmenus
subheight=22 //The height of the submenus
pxspeed=13 //The pixel speed of the animation
timspeed=15 //The timer speed of the animation
menuy=105 //The top placement of the menu.
menux=42 //The left placement of the menu
//Images - Play with these
level0_regular="../images/level0_regular.gif"
level0_round="../images/level0_round.gif"
level1_regular="../images/level1_regular.gif"
level1_round="../images/level1_round.gif"
level1_sub="../images/level1_sub.gif"
level1_sub_round="../images/level1_sub_round.gif"
level1_round2="../images/level1_round2.gif"
level2_regular="../images/level2_regular.gif"
level2_round="../images/level2_round.gif"

//Leave this line
preLoadBackgrounds(level0_regular,level0_round,level1_regular,level1_round,level1_sub,level1_sub_round,level1_round2,level2_regular,level2_round)


//There are 3 different types of menus you can make
//top = Main menus
//sub = Sub menus
//sub2 = SubSub menus

//You control the look of the menus in the stylesheet

//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')

//Menu 0 
makeMenu('top','About Us')
	makeMenu('sub','Who we are','../about/about.htm')
	makeMenu('sub','Volunteer','../about/volunteer.htm')
	makeMenu('sub','Contact','../about/contact.htm')
	makeMenu('sub','Home','../index.htm')
	//makeMenu('sub','Help','../about/help.htm')

//Menu 1    
makeMenu('top','Projects')
	makeMenu('sub','Ahlul Bayt Hawza','../projects/buildHawza.htm')
	makeMenu('sub','Summer School','../projects/summerSchool.htm')
	makeMenu('sub','Sponsor an Orphan','../projects/sponsorOrphan.htm')
	makeMenu('sub','Build a Mosque','../projects/buildMosque.htm')
	makeMenu('sub','Sponsor a Child','../projects/sponsorChild.htm')
	makeMenu('sub','Teaching Children','../projects/teachingChildren.htm')
	makeMenu('sub','Aid for Refugees','../projects/aidForRefugees.htm')
	makeMenu('sub','Medical Care','../projects/medicalCare.htm')
	makeMenu('sub','Help in Bangladesh','../projects/helpInBangladesh.htm')

//Menu 2
makeMenu('top','Donate')
	makeMenu('sub','Donate Online','../donate/donateOnline.htm')
	makeMenu('sub','By Regular Mail','../donate/regularMail.htm')
	makeMenu('sub','S O Mandate','../donate/soMandate.htm')
	//makeMenu('sub','Perfect Present','../donate/perfectPresent.htm')


//Menu 3  
//makeMenu('top','Shop Online')
	//makeMenu('sub','Books','../shopOnline/books.htm')
	//makeMenu('sub','Hijaab','../shopOnline/hijaab.htm')

// Menu 4
makeMenu('top','Links')
	makeMenu('sub','Islamic Centres','../links/islamicCenters.htm')
	makeMenu('sub','Resources','../links/resources.htm',"",1)
  
//Menu 5 
//makeMenu('top','Scratch')
//	makeMenu('sub','dhtmlcentral','dhtmlcentral/index.htm',"",1)

//Starting the menu
onload=SlideMenuInit;