/***********************************************************************************
*	(c) Ger Versluis 2000 version simple 4 April 2002	          *
*	You may use this script on non commercial sites.	          *
*	For info write to menus@burmees.nl		          *
*	You may remove all comments for faster loading	          *		
***********************************************************************************/
	var NoOffFirstLineMenus=9;			// Number of main menu  items
							// Colorvariables:
							// Color variables take HTML predefined color names or "#rrggbb" strings
							// For transparency make colors and border color ""
	var LowBgColor="white";				// Background color when mouse is not over
	var HighBgColor="#800040";			// Background color when mouse is over
	var FontLowColor="black";			// Font color when mouse is not over
	var FontHighColor="white";			// Font color when mouse is over
	var BorderColor="#800040";			// Border color
	var BorderWidth=1;				// Border width
	var BorderBtwnElmnts=1;				// Border between elements 1 or 0
	var FontFamily="Verdana, Arial, Helvetica"	// Font family menu items
	var FontSize=8;					// Font size menu items
	var FontBold=0;					// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="left";			// Item text position left, center or right
	var MenuCentered="left";			// Menu horizontal position can be: left, center, right, justify,
							//  leftjustify, centerjustify or rightjustify. PartOfWindow determines part of window to use
	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=100;				// Menu offset x coordinate
	var StartLeft=5;				// 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=5;				// Top padding
	var FirstLineHorizontal=0;			// First level items layout horizontal 1 or 0
	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 MenuUsesFrames=1;				// MenuUsesFrames is only 0 when Main menu, submenus,
	var FirstLineFrame="leftFrame";			// Frame where first level appears
	var SecLineFrame="leftFrame";			// Frame where sub levels appear
	var DocTargetFrame="mainFrame";			// Frame where target documents appear
	var TargetLoc="";				// span id for relative positioning
	var UnfoldsOnClick=1;				// Level 1 unfolds onclick/ onmouseover
	var BaseHref="";				// BaseHref lets you specify the root directory for relative links. 
							// The script precedes your relative links with BaseHref
							// For instance: 
							// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
							// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
							// Can also be used when you use images in the textfields of the menu
							// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
							// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

	var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5];

							// Arrow source, width and height.
							// If arrow images are not needed keep source ""

							// document targets and script are in the same frame.
							// In all other cases it must be 1

	var PartOfWindow=.8;				// PartOfWindow: When MenuCentered is justify, sets part of window width to stretch to

	var MenuSlide="";				// Some pretty useless effects, since only IE5+ supports them
	var MenuShadow="";
	var MenuOpacity="";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width);

Menu1=new Array("Front Page", "intro.htm","",0,20,120);
Menu2=new Array("Meeting Dates", "events.htm","",0,20,120);
Menu3=new Array("Membership", "membership.htm","",0,20,120);
Menu4=new Array("Online Forum", "ajgen.htm","",0,20,120);
Menu5=new Array("e-Report", "newsletter.htm","",0,20,120);
Menu6=new Array("Activities", "activities.htm","",0,20,120);
Menu7=new Array("Resources", "resources.htm","",0,20,120);
Menu8=new Array("Links", "Internet-Links.htm","",0,20,120);
//Menu8=new Array("Hints & Links", "links.htm","",5,20,120);
//	Menu8_1=new Array("Jewish", "links.htm","",0,20,120);
//	Menu8_2=new Array("Australia","javascript:NewWin=window.open(\"ozframes.htm\",\"NWin\");window[\"NewWin\"].focus()","",0,20,120);
//	Menu8_2=new Array("Australia","javascript:top.location.href=\"ozframes.htm\"","",0,20,120);
//	Menu8_3=new Array("Europe", "links.htm","",0,20,120);
//	Menu8_4=new Array("America", "links.htm","",0,20,120);
//	Menu8_5=new Array("Previous Items", "previous.htm","",0,20,120);
Menu9=new Array("Contact Details", "contacts.htm","",0,20,120);


// Configuration to open file in new window or frame.
// Menu4=new Array("Open in new","javascript:NewWin=window.open(\"file.htm\",\"NWin\");window[\"NewWin\"].focus()","",0,20,120);
// Menu5=new Array("Open in top","javascript:top.location.href=\"file.htm\"","",0,20,120);
