<!--
	//   C o m m o n   S e t t i n g s   f o r   E n t i r e   M e n u
	_menuCloseDelay=500;			// The time delay for menus to remain visible on mouse out
	_menuOpenDelay=0;				// The time delay before menus open on mouse over
	_followSpeed=5;					// Follow scrolling speed
	_followRate=50;					// Follow scrolling Rate
	_subOffsetTop=0;				// Sub menu top offset
	_subOffsetLeft=-3;				// Sub menu left offset
	_scrollAmount=3;				// Only needed for Netscape 4.x
	_scrollDelay=20;				// Only needed for Netcsape 4.x
	imagepath="/";	// path to images used in dhtml menu.

	//   T o p   M e n u   S t y l e   S e t t i n g s
	with(menuStyle=new mm_style()){
		align="left";				// middle
		padding="6 20 6 12";				// "4,6,4,6"  top,right,bottom,left
		oncolor="#C8D1E3";			// rollover Font Color
		//onbgcolor="#999999";		// rollover background color
		offcolor="white";			// default Font Color
		//offbgcolor="#999999";		// default background color
		borderwidth=0;
		borderstyle="solid";
		//bordercolor="#999999";
		separatorsize=0;
		separatorcolor="white";
		fontsize="12px";
		fontstyle="normal";			// italic
		//fontweight="bold";			// bold
		fontfamily="Arial, Sans-Serif";
		//ondecoration="underline";	// rollover text decoration
		//pagecolor="white";			// selected item text color
		//pagebgcolor="#999999";		// selected item background color
		//headercolor="white";		// Menu Header Font Color
		//headerbgcolor="#000099";	// Menu Header Background Color
		//subimage=imagepath+"arrow.gif";
		//subimagepadding="2";
		//overfilter="Fade(duration=0.2);Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=5)";
		//outfilter="";
		//itemwidth=94;
		//itemheight=40;
	}

	//   A l l   S u b - M e n u   S t y l e   S e t t i n g s
	with(subMenuStyle=new mm_style()){
		padding="2 8 2 4";				// "2,3,2,3"  top,right,bottom,left
		oncolor="#C8D1E3";
		onbgcolor="#163D7A";
		offcolor="#FFFFFF";
		offbgcolor="#163D7A";
		borderwidth=1;
		borderstyle="solid";
		bordercolor="#FFFFFF";
		separatorsize=1;
		separatorcolor="#C8D1E3";
		fontsize="12px";
		fontstyle="normal";
		fontweight="normal";		// bold
		fontfamily="Arial, Sans-Serif";
		ondecoration="underline";	// rollover text decoration
		pagecolor="C8D1E3";			// selected item text color
		pagebgcolor="#163D7A";		// selected item background color
		//headercolor="white";
		//headerbgcolor="#000099";
		//subimage=imagepath + "arrow_wide.gif";
		subimagepadding="1 2";	// "1,4,1,0"
		//overfilter="Alpha(opacity=90);Shadow(color='#777777', Direction=135, Strength=4)";
		//overfilter="Fade(duration=0.4);Alpha(opacity=80);Shadow(color='#777777', Direction=135, Strength=5)";
		//outfilter="randomdissolve(duration=0.5)";
		//outfilter="Fade(duration=0.7)";
	}
// Building All Sub-Menus

with(milonic=new menuname("id_spelregels")){
	style=subMenuStyle;
	aI("text=Spelregels voor pashouders;url=spelregels_pas.asp;target=_parent;");
	aI("text=Algemene voorwaarden;url=alg_voorwaarden_pas.asp;target=_parent;");
}

with(milonic=new menuname("id_over50plus")){
	style=subMenuStyle;
	aI("text=Tips;url=pas_alletips.asp;target=_parent;");
	aI("text=Veel gestelde vragen;url=faq_pas.asp;target=_parent;");
	aI("text=Over ons;url=over_ons.asp;target=_parent;");
	aI("text=Deelnemen als bedrijf;url=deelnemen_bedrijf.asp;target=_parent;");
			
}

with(milonic=new menuname("id_kortingen")){
	style=subMenuStyle;
	aI("text=<b>Uitgebreid zoeken</b> naar bedrijven;url=kortingen_zoeken.asp;target=_parent;");
	aI("text=Zoeken naar bedrijven op <b>kortingsgroep</b>;url=kortingen_kortingsgroep.asp;target=_parent;");
	aI("text=Zoeken naar bedrijven op <b>provincie / plaats</b>;url=kortingen_provincie.asp;target=_parent;");
//	aI("text=Landelijke toppers;url=landelijke_toppers.asp;target=_parent;");
	aI("text=Lijst met kortingen maken <b>(om te printen)</b>;url=kortingen_lijst_selecteren.asp;target=_parent;");
			
}
		
with(milonic=new menuname("id_nieuws")){
	style=subMenuStyle;
	aI("text=Nieuwtjes;url=nieuws.asp;target=_parent;");
	aI("text=E-mail nieuwsbrief;url=nieuwsbrief.asp;target=_parent;");
			
}

// Build Top Level Menu
	with(milonic=new menuname("Main Menu")){
		style=menuStyle;
		top=17;
		left=138;
		alwaysvisible=1;
		orientation="horizontal";
		overfilter="";
		position="relative";
		
		aI("text=Nieuws;target=_parent;showmenu=id_nieuws;");
		aI("text=Kortingen zoeken;target=_parent;showmenu=id_kortingen;");
		aI("text=Spelregels;target=_parent;showmenu=id_spelregels;");
		aI("text=Over 50plusvoordeelpas;target=_parent;showmenu=id_over50plus;");
//		aI("text=Discussieforum;url=forum.asp;target=_parent;");
		aI("text=Wijzigen adres;url=verhuizen.asp?fform=ja;target=_parent;");
		aI("text=Inloggen;url=pas_inloggen.asp;target=_parent;");
	}

	drawMenus();	// function call that builds/displays entire menu
//-->

