 /***********************************************
*	(c) Ger Versluis 2000 version 13.21 April 28, 2008    *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=8;			// 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="#A61F25";		// Background color when mouse is not over
	var HighBgColor="#8AB573";			// Background color when mouse is over
	var FontLowColor="white";			// Font color when mouse is not over
	var FontHighColor="white";			// Font color when mouse is over
	var BorderColor="#000000";			// Border color
	var BorderWidthMain=0;		// Border width main items
	var BorderWidthSub=0;			// Border width sub items
 	var BorderBtwnMain=0;		// Borderwidth between elements
	var BorderBtwnSub=0;			// Borderwidth between elements sub items
	var FontFamily="arial";	// Font family menu items
	var FontSize=12;				// 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="center";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=0;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=0;			// vertical overlap child/ parent
	var StartTop=121;				// Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
	var StartLeft=0;				// Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
	var VerCorrect=2;				// Multiple frames y correction
	var HorCorrect=10;				// Multiple frames x correction
	var DistFrmFrameBrdr=100;			// Distance between main menu and frame border
	var LeftPaddng=5;				// Left padding
	var TopPaddng=5;			// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=1;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=500;			// delay before menu folds in
	var UnfoldDelay=150;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="";			// Frame where first level appears
	var SecLineFrame="";			// Frame where sub levels appear
	var DocTargetFrame="";			// Frame where target documents appear
	var TargetLoc="";				// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// 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",3,8,BaseHref+"tridown.gif",8,3,BaseHref+"trileft.gif",3,8,BaseHref+"triup.gif",8,3];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1
	var OverFormElements=1;			// Set this to 0 when the menu does not need to cover form elements.
	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
	var BuildOnDemand=0;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu3_2_1=new Array(.......

	var HooverBold=0;				// 1 or 0
	var HooverItalic=0;				// 1 or 0
	var HooverUnderLine=1;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

						
	var MenuSlide="";	
	//var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)"; 
	//var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.2, wipeStyle=1)"; 

	var MenuShadow="";
	//var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)"; 
	//var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)"; 
	
	//var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=95)"; 
	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,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 
// kijk voor voorbeelden in map onder SinglePage_var.js
Menu1=new Array("Home","index.html","",0,20,50,"","","","","","",-1,-1,-1,"","Home");	
Menu2=new Array("Contact","","",3,20,60,"","","","","","",-1,-1,-1,"","Contactformulier");			
	Menu2_1=new Array("Bericht Sturen","contact.html","",0,20,150,"","","","","","",-1,-1,-1,"","Contactformulier");		
	Menu2_2=new Array("Clubadres","clubadres.html","",0,20,100,"","","","","","",-1,-1,-1,"","Clubadres");	
	Menu2_3=new Array("Clubadres Streetview","clubadresStreet.html","",0,20,150,"","","","","","",-1,-1,-1,"","Clubadres Streetview");	
Menu3=new Array("Competitie","","",7,20,80,"","","","","","",-1,-1,-1,"","Libre");	
		Menu3_1=new Array("Individueel","","",12,20,120,"","","","","","",-1,-1,-1,"","Individueel");	
		Menu3_1_1=new Array("Bert van Limburg","libre/Libre_Bert.html","",0,20,110,"","","","","","",-1,-1,-1,"","Bert van L.");	
		Menu3_1_2=new Array("Bert Dijkstra","libre/Libre_BertDijkstra.html","",0,20,110,"","","","","","",-1,-1,-1,"","Bert D");						
		Menu3_1_3=new Array("Dick Smilde","libre/Libre_Dick.html","",0,20,110,"","","","","","",-1,-1,-1,"","Dick");	
		Menu3_1_4=new Array("Frans Storms","libre/Libre_FransStorms.html","",0,20,110,"","","","","","",-1,-1,-1,"","Frans S");	
		Menu3_1_5=new Array("Frans Wierckx","libre/Libre_Frans.html","",0,20,110,"","","","","","",-1,-1,-1,"","Frans W");		
		Menu3_1_6=new Array("Hans Smilde","libre/Libre_Hans.html","",0,20,110,"","","","","","",-1,-1,-1,"","Hans");	
		Menu3_1_7=new Array("Henri Jacobs","libre/Libre_Henri.html","",0,20,110,"","","","","","",-1,-1,-1,"","Henri");	
		Menu3_1_8=new Array("Jan Jager","libre/Libre_Jan.html","",0,20,110,"","","","","","",-1,-1,-1,"","Jan");	
		Menu3_1_9=new Array("Johan Medendorp","libre/Libre_Johan.html","",0,20,110,"","","","","","",-1,-1,-1,"","Johan");		
		Menu3_1_10=new Array("Michiel ter Bekke","libre/Libre_Michiel.html","",0,20,110,"","","","","","",-1,-1,-1,"","Michiel");		
		Menu3_1_11=new Array("Rini Dijk","libre/Libre_Rini.html","",0,20,110,"","","","","","",-1,-1,-1,"","Rini");	
		Menu3_1_12=new Array("Ruud Jansen","libre/Libre_Ruud.html","",0,20,110,"","","","","","",-1,-1,-1,"","Ruud");		
	Menu3_2=new Array("Stand","libre/Libre_Stand.html","",0,20,90,"","","","","","",-1,-1,-1,"","Stand");		
	Menu3_3=new Array("Stand Virtueel","libre/Libre_Standvirtueel2.html","",0,20,90,"","","","","","",-1,-1,-1,"","Stand Virtueel");	
	//Menu3_4=new Array("Poule","","",2,20,90,"","","","","","",-1,-1,-1,"","Poule");		
		//Menu3_4_1=new Array("Poule AA-AB","libre/Libre_PouleA.html","",0,20,90,"","","","","","",-1,-1,-1,"","Poule A");	
		//Menu3_4_2=new Array("Poule BB-BA","libre/Libre_PouleB.html","",0,20,90,"","","","","","",-1,-1,-1,"","Poule B");	
	Menu3_4=new Array("Alle Wedstrijden","libre/Libre_Alles.html","",0,20,100,"","","","","","",-1,-1,-1,"","Alle Wedstrijden");	
	Menu3_5=new Array("Archief","libre/Libre_Archief.html","",0,20,100,"","","","","","",-1,-1,-1,"","Archief");
	Menu3_6=new Array("Klasseringen","libre/Libre_klasseringen.html","",0,20,100,"","","","","","",-1,-1,-1,"","Klasseringen");
	Menu3_7=new Array("KNBB","libre/Libre_KNBB.html","",0,20,100,"","","","","","",-1,-1,-1,"","KNBB");
Menu4=new Array("Buitencomp.","buitencomp.html","",0,20,80,"","","","","","",-1,-1,-1,"","Buitencompetitie met Nooit Gedacht");	
Menu5=new Array("Biljart Video's","biljartvaria.html","",0,20,85,"","","","","","",-1,-1,-1,"","Biljart video's");
Menu6=new Array("Adverteerders","","",2,20,90,"","","","","","",-1,-1,-1,"","Site Adverteerders");
	Menu6_1=new Array("Overzicht","adverteerders.html","",0,20,110,"","","","","","",-1,-1,-1,"","Overzicht Adverteerders");
	Menu6_2=new Array("Banner Plaatsen","adverteerdercontact.html","",0,20,110,"","","","","","",-1,-1,-1,"","Banner Aanvragen");
Menu7=new Array("Ledeninfo","clubleden.html","",0,20,70,"","","","","","",-1,-1,-1,"","Inloggen voor leden");	
Menu8=new Array("Kastje Stoten","","",2,20,90,"","","","","","",-1,-1,-1,"","Kastje Stoten"); 
	//Menu8_1=new Array("Informatie","kaststoteninfo.html","",0,20,110,"","","","","","",-1,-1,-1,"","Kastje Stoten Informatie");	
	//Menu8_2=new Array("Inschrijven","kastinschrijven.html","",0,20,110,"","","","","","",-1,-1,-1,""," Inschrijven");
	//Menu8_3=new Array("Inschrijvers","kastinschrijvers.html","",0,20,110,"","","","","","",-1,-1,-1,"","Overzicht Inschrijvers");  
	Menu8_1=new Array("Foto's 2012","kastfoto2012.html","",0,20,130,"","","","","","",-1,-1,-1,"","Foto's 2012");
	Menu8_2=new Array("Archief","kastarchief.html","",0,20,110,"","","","","","",-1,-1,-1,"","Kastje Stoten Archief");
	
	
	

		
