/*****************************************
 *	(c) 2003, Eden G Adogla, Soul Sistah *		
 *****************************************/

	// A note on variable ranges.
	// For numeric variables, [a,b] implies any value, including decimals between a and b
	// {a, b, c}  any one of a, b or c.


	var NoOffFirstLineMenus=4;		// Number of first level menu items
	var Arrws= ['img/right.gif',5,10,'img/down.gif',10,5,'img/left.gif', 5, 10];
	// Arrows source, width and height

	var LowBgColor='#c0c0c0';		// Background color when menu is inative
	var HighBgColor='#335599';		// Background color when menu is active
	var FontLowColor='black';		// Font color when menu is inactive
	var FontHighColor='white';		// Font color when menu is active
	var BorderColor='black';		// Border color

	var LowSubBgColor='#ececec';	// Background color when submenu is inactive
	var HighSubBgColor='#335599';	// Background color when submenu is active
	var FontSubLowColor='black';	// Font color when submenu is inactive
	var FontSubHighColor='white';	// Font color when sunmenu is active
	var BorderSubColor='black';		// Border color for submenu

	var BorderWidth=1;				// Border width
	var BorderBtwnElmnts=1;			// Border between elements. {0,1}

	var FontFamily="arial,comic sans ms,technical"	// Font family
	var FontSize=8;					// Font size
	var FontBold=0;					// Bold. {0,1}
	var FontItalic=0;				// Italic. {0,1}
	var MenuTextCentered='left';	// Text Alignment. {'left', 'center','right'}

	var StartTop=200;				// Menu offset x coordinate
	var StartLeft=90;				// Menu offset y coordinate
	var MenuCentered='center';		// Menu horizontal position. {'left', 'center', 'right'}
	var MenuVerticalCentered='top';	// Menu vertical position. {'top', 'middle','bottom', 'static'}
	var ChildOverlap=.2;			// Horizontal submenu overlap over parent [0,1]
	var ChildVerticalOverlap=.2;	// Vertical submenu overlap over parent [0,1]
	var LeftPaddng=3;				// Left padding
	var TopPaddng=1;				// Top padding
	var FirstLineHorizontal=1;		// 0 => Vertical menu. 1 => Horizontal menu
	var DissapearDelay=1000;		// delay before menu folds in. In milliseconds
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var HideTop=0;					// Hide first level when loading new document {0,1}
	var MenuWrap=1;					// Disables/Enables menu wrap {0,1}
	var RightToLeft=0;				// Disables/Enables right to left unfolding {0,1}
	var UnfoldsOnClick=0;			// Level 1 Trigger: 0 => onclick, 1 => onmouseover
	var WebMasterCheck=0;			// Menu tree checking {0,1}. Set to 0 when done.
	var ShowArrow=0;				// Uses arrow gifs when 1. {0,1}
	var KeepHilite=1;				// Keep selected path highligthed
	

	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// Multiple frames x correction
	var MenuFramesVertical=1;		// Frames in cols or rows {0,1}
	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
	

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


/* Menu Tree
 * Syntax : MenuX=new Array(caption, link, background image (optional), number of submenus, height, width);
 * 
 * 
 * You only have to explicitly declare menu dimensions for the first menu item in a level.
 * Define each menu/submenu item here.
 * For rollover effects use "rollover:imgName0.gif:imgName1.gif" inplace of the caption.
 */


Menu1 = new Array(": HOME","index.html","",0,15,85);

Menu2 = new Array(": ABOUT US","about-us.html","",4);
	Menu2_1 = new Array(": History","about-us.html#history","",0,15,100);
	Menu2_2 = new Array(": Mission Goals","about-us.html#mission-goals","",0);
	Menu2_3 = new Array(": Organisation","organisation.html","",0);
	Menu2_4 = new Array(": Future Plans","about-us.html#future-plans","",0);
	
Menu3 = new Array(": ACTIVITIES","","",3);
	Menu3_1 = new Array(": Crisis Centre","","",2,15,100);
		Menu3_1_1 = new Array(": The Centre","crisis-centre.html","",0,15,100);
		Menu3_1_2 = new Array(": Testimonies","testimonies.html","",0);
			
	Menu3_2 = new Array(": Outreach","","",3);
		Menu3_2_1 = new Array(": Street Evangelism","street-evangelism.html","",0,15,120);
		Menu3_2_2 = new Array(": Evangelism Crusades","evangelism-crusades.html","",0);
		Menu3_2_3 = new Array(": Hospital Outreaches","hospital-outreach.html","",0);		
		
	Menu3_3 = new Array(": Publications","","",1);
		Menu3_3_1 = new Array("&nbsp; : <i>Crisis Watch</i>","crisis-watch.html","",0,15,85);
		
Menu4 = new Array(": HELPING OUT","helping-out.html","",0);
