/******************************************************************************************
*
*edited 08/07/06 by Mairead Finn
*
*INSTRUCTIONS FOR EDITING THE NUMBER OF ELEMENTS IN THE MENU
*
*To edit the number of items (ie columns) in the menu adjust the variable 'NoOffFirstLineMenus'
*which is the first line of code. This is currently set at eight. 
*
*
*When adding an item, increase the variable (in this case to 9: var NoOffFirstLineMenus=9;) and then 
*declare a new menu item in the same way as the others. 
*
*For example, Menu9=new Array("Help","help.htm","",0,20,100); adds 'help' to the end of the menu bar. 
*
*Here is an explanation of the declaration:
*	MenuX=new Array(Text to show, Link, background image (optional), number of sub elements, height, width);
*
*	"Help" is the text to show on the menu, "help.htm" is the link, "" is left blank as there is no background
*	image, 0 is the number of sub elements, 20 is the height of the column and 100 is the width. 
*
*It is important to add a semicolon (;) to the end of the declaration as above.
*
*
*To delete an item, decrease the 'NoOffFirstLineMenus' variable and simply delete the declaration, in 
*this case we delete Menu9=new Array("Help","help.htm","",0,20,100);
*
*
*To add something to a lower level menu;
*
*A menu is declared as followed:
*MenuX=new Array(Text to show, Link, background image (optional), NUMBER OF SUB ELEMENTS, height, width);
*Therefore the item to change is the third from the end - number of sub elements.  
*
*For example, to add another level to the home menu (currently: Menu1=new Array("Home","default.htm","",0,20,100);)
*
*	Menu1=new Array("Home","","",2);
*		Menu1_1=new Array("Home","default.htm","",0,20,100);
*		Menu1_2=new Array("Website","website.htm","",0,20,100);
*
*
*To adjust the number of sub elements: simply adjust the last number and the sub elements accordingly. 
*For example to increase the home menu above:
*
*	Menu1=new Array("Home","","",3);
*		Menu1_1=new Array("Home","default.htm","",0,20,100);
*		Menu1_2=new Array("Website","website.htm","",0,20,100);
*		Menu1_3=new Array("Example","example.htm","",0,20,100);
*
*
*If the text is too long and doesn't fit (such as getting diagnosed), the height and width of the column 
*can be adjusted by adjusting the last two numbers.
*	For example, Menu2_3=new Array("Getting Diagnosed","docs/MedicalProsAwareOfAS.xls","",0,35,100);
*
*
*********************************************************************************************/
/*********************************************************************************************
Update from 07/11/2006

It seems that the first menu - "Menu1=new Array("Home","http://www.aspire-irl.org/default.htm","",0, 30, 100);" - should be 
left with just one row (ie as is) because otherwise the menu goes askew

*********************************************************************************************/

//nabvbar code
	var NoOffFirstLineMenus=6;			// Number of first level items
	var LowBgColor='#CAD9EF';			// Background color when mouse is not over
	var LowSubBgColor='#CAD9EF';			// Background color when mouse is not over on subs
	var HighBgColor='#A2C0EC';			// Background color when mouse is over
	var HighSubBgColor='#A2C0EC';			// Background color when mouse is over on subs
	var FontLowColor='#CC3333';			// Font color when mouse is not over
	var FontSubLowColor='CC3333';			// Font color subs when mouse is not over
	var FontHighColor='#CC3333';			// Font color when mouse is over
	var FontSubHighColor='#CC3333';			// Font color subs when mouse is over
	var BorderColor='#A2C0EC';			// Border color
	var BorderSubColor='#A2C0EC';			// Border color for subs
	var BorderWidth=2;				// Border width
	var BorderBtwnElmnts=2;			// Border between elements 1 or 0
	var FontFamily="tahoma,arial,verdana,times"	// Font family menu items
	var FontSize=9;				// Font size menu items
	var FontBold=1;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered='center';			// Item text position 'left', 'center' or 'right'
	var MenuCentered='center';			// Menu horizontal position 'left', 'center' or 'right'
	var MenuVerticalCentered='top';		// Menu vertical position 'top', 'middle','bottom' or static
	var ChildOverlap=.2;				// horizontal overlap child/ parent
	var ChildVerticalOverlap=.2;			// vertical overlap child/ parent
	var StartTop=1;				// Menu offset x coordinate
	var StartLeft=1;				// Menu offset y coordinate
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var LeftPaddng=3;				// Left padding
	var TopPaddng=2;				// Top padding
	var FirstLineHorizontal=1;			// SET TO 1 FOR HORIZONTAL MENU, 0 FOR VERTICAL
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;			// delay before menu folds in
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame='navig';			// Frame where first level appears
	var SecLineFrame='space';			// Frame where sub levels appear
	var DocTargetFrame='space';			// Frame where target documents appear
	var TargetLoc='';				// span id for relative positioning
	var HideTop=0;				// Hide first level when loading new document 1 or 0
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
	var WebMasterCheck=0;			// menu tree checking on or off 1 or 0
	var ShowArrow=1;				// Uses arrow gifs when 1
	var KeepHilite=1;				// Keep selected path highlighted
	var Arrws=['images/tri.gif',5,10,'images/tridown.gif',10,5,'images/trileft.gif',5,10];	// Arrow source, width and height

function BeforeStart(){return}
function AfterBuild(){return}
function BeforeFirstOpen(){return}
function AfterCloseAll(){return}


// Menu tree
//	MenuX=new Array(Text to show, Link, background image (optional), number of sub elements, height, width);
//	For rollover images set "Text to show" to:  "rollover:Image1.jpg:Image2.jpg"

Menu1=new Array("Home","index.htm","",0, 20, 130);

Menu2=new Array("About Aspire","","",5);
   Menu2_1=new Array("News & Events","about_aspire/events.htm","",0,20,130);
   Menu2_2=new Array("Publications","about_aspire/publications.htm","",0,20,130);
   Menu2_3=new Array("Research","about_aspire/aspire_research.htm","",0,20,130);
   Menu2_4=new Array("Membership","about_aspire/member.html","",0,20,130);
   Menu2_5=new Array("Contact Aspire","about_aspire/contact.htm","",0,20,130);

Menu3=new Array("About AS","","",4);
    Menu3_1=new Array("AS Scales","as_scales.htm","",0,20,130);
    Menu3_2=new Array("AS and Diet","diet.htm","",0,20,130);
    Menu3_3=new Array("Allowances","entandallow.htm","",0,20,130);
    Menu3_4=new Array("Education","teacher.htm","",0,20,130);

Menu4=new Array("Aspire Services","","",4);
	Menu4_1=new Array("General Overview","general.htm","",0,20,130);
	Menu4_2=new Array("AS Support Groups","support.htm","",0,20,130);
    Menu4_3=new Array("Drama","drama.htm","",0,20,130);
    Menu4_4=new Array("Lobbying","lobbying_2.htm","",0,20,130);

Menu5=new Array("Other Supports","","",5);
	Menu5_1=new Array("Diagnosis","diagnosis.htm","",0,20,130);
	Menu5_2=new Array("Interventions","diagnosis2.htm","",0,20,130);
	Menu5_3=new Array("Employment","employment.htm","",0,20,130);
	Menu5_4=new Array("External Services","societies.htm","",0,20,130);
	Menu5_5=new Array("Useful Links","links.htm","",0,20,130);

Menu6=new Array("Fundraising","","",1);
   Menu6_1=new Array("Fundraising","fundraising.html","",0,20,130);
