
// VARIABLES GLOBALES


	// Largeur de la fenetre
	var winWidth;

	// Largeur des elts du menu
	var accW = 80;
	var imW = 150;
	var specW = 150;
	var mulW = 150;
	var hypW = 150;
	var linkW = 80;
	var totalW = accW+imW+specW+mulW+hypW+linkW;

	// Position en X des elts du menu
	var accX;
	var imX;
	var specX;
	var mulX;
	var hypX;
	var linkX;
		
	// Couleur du fond
	var bgColor = "#abd3e0";
	// Couleur du texte
	var txtColor = "#000071";
	
	// Couleur des cases du menu onMouseOn
	var colorMenu = "#ffffff";
	// Couleur des cases du menu onMouseOut
	var colorMenuOut = "#abd3e0";
	// Couleur des tableaux
	var colorMenuBorder = "#FFFFFF";



// INITIALISER LA PAGE
function init()
{
		initValues();
		displayMenu();
		initMenu();
}


// INITIALISER LES VALEURS
function initValues()
{
	winWidth = document.body.clientWidth;
			
	// Position en X des elts du menu
	accX = winWidth/2 - totalW/2 + 30;
	imX = accX+accW-2;
	specX = imX+imW-2;
	mulX = specX+specW-2;
	hypX = mulX+mulW-2;
	linkX = hypX+hypW-2;		
}


// INIT MENU : cache les sous menu

function initMenu() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='hidden';
       document.all.ID_MENU21.style.visibility='hidden';       
       document.all.ID_MENU31.style.visibility='hidden';
       document.all.ID_MENU31_1.style.visibility='hidden';
       document.all.ID_MENU31_2.style.visibility='hidden';
       document.all.ID_MENU31_3.style.visibility='hidden';
       document.all.ID_MENU31_4.style.visibility='hidden';
       document.all.ID_MENU41.style.visibility='hidden';
       document.all.ID_MENU41_1.style.visibility='hidden';
       document.all.ID_MENU41_2.style.visibility='hidden';
       //document.all.ID_MENU51.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='hidden';
       document.getElementById('ID_MENU21').style.visibility='hidden';
       document.getElementById('ID_MENU31').style.visibility='hidden';
       document.getElementById('ID_MENU31_1').style.visibility='hidden';   
       document.getElementById('ID_MENU31_2').style.visibility='hidden'; 
       document.getElementById('ID_MENU31_3').style.visibility='hidden';
       document.getElementById('ID_MENU31_4').style.visibility='hidden';        
       document.getElementById('ID_MENU41').style.visibility='hidden';
       document.getElementById('ID_MENU41_1').style.visibility='hidden';   
       document.getElementById('ID_MENU41_2').style.visibility='hidden';   
       //document.getElementById('ID_MENU51').style.visibility='hidden';
  }
}



// DESSIN DU MENU
function displayMenu()
{
// MENU PRINCIPAL

	document.write(	"<DIV ID='ID_MENU0' style=\"position: absolute; left:"+accX+"px; top:140px; width:"+accW+"px; height25px; border-width:1; background-color='#FFFFFF'\" z-index:1 >");
	document.write(	"	<TABLE  BORDER='0' WIDTH='80'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"javascript:window.location='../index.html'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Home</CENTER></TD>");

	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


	document.write(	"	<DIV ID='ID_MENU1' style=\"position: absolute; left:"+imX+"px; top:140px; width:"+accW+"px; height25px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu11()' onmouseout='hideMenu11()'>"); 
	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenuOut\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Receptie - Service</CENTER></TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


	document.write(	"	<DIV ID='ID_MENU2' style=\"position: absolute; left:"+specX+"px; top:140px; width:"+specW+"px; height25px;  border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu21()' onmouseout='hideMenu21()'>");
	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenuOut\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Waterpark</CENTER></TD>");

	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


	document.write(	"	<DIV ID='ID_MENU3' style=\"position: absolute; left:"+mulX+"px; top:140px; width:"+mulW+"px; height25px;  border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31()' onmouseout='hideMenu31()'>");
	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenuOut\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Accomodie</CENTER></TD>");

	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


	document.write(	"	<DIV ID='ID_MENU4' style=\"position: absolute; left:"+hypX+"px; top:140px; width:"+hypW+"px; height25px;  border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu41()' onmouseout='hideMenu41()'>");
	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenuOut\" onmouseout=\"this.bgColor=colorMenuOut\"   BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Activiteiten</CENTER></TD>");

	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


	document.write(	"	<DIV ID='ID_MENU5' style=\"position: absolute; left:"+linkX+"px; top:140px; width:"+linkW+"px; height25px;  border-width:1; background-color='#FFFFFF'\" z-index:1 >");
	document.write(	"	<TABLE  BORDER='0' WIDTH='80'  HEIGHT='25' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"javascript:window.location='acces_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\"><CENTER>Toegang</CENTER></TD>");

	document.write(	"		</TR>");
	document.write(	"	</TABLE>");
	document.write(	"</DIV>");


//<!-- SOUS MENU POUR accueil et services> -->

	document.write(	"	<DIV ID='ID_MENU11' style=\"position: absolute; left:"+imX+"px; top:163px; width:150px; height:100px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu11()' onmouseout='hideMenu11()'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='100' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='services_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Receptie</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='services_nl.htm#actu'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>News</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='services_nl.htm#gratuit'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Gratis Services</CENTER>");
	document.write(	"			</TD>");
			
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='services_nl.htm#payant'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Betaalde Services</CENTER>");
	document.write(	"			</TD>");
			
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");



//<!-- SOUS MENU POUR parc aquatique -->

	document.write(	"	<DIV ID='ID_MENU21' style=\"position: absolute; left:"+specX+"px; top:163px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu21()' onmouseout='hideMenu21()'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='piscine_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Zwembad</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='piscine_nl.htm#parc'\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Waterpark</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");



//<!-- SOUS MENU POUR hébergements> -->

	document.write(	"	<DIV ID='ID_MENU31' style=\"position: absolute; left:"+mulX+"px; top:163px; width:150px; height:125px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31()' onmouseout='hideMenu31()'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='125' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu31_1();\" onmouseout=\"javascript:hideMenu31_1();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Camping </CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu31_2();\" onmouseout=\"javascript:hideMenu31_2();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Mobil-Home </CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu31_3();\" onmouseout=\"javascript:hideMenu31_3();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Chalet </CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
		document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu31_4();\" onmouseout=\"javascript:hideMenu31_4();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Tipis </CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='reservation_nl.php'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Voor Reservering</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='promotions_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Promoties</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");

	document.write(	"	</TABLE>");

	document.write(	"</DIV>");



//<!-- SOUS MENU POUR activités> -->

	document.write(	"	<DIV ID='ID_MENU41' style=\"position: absolute; left:"+hypX+"px; top:163px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu41()' onmouseout='hideMenu41()'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu41_1();\" onmouseout=\"javascript:hideMenu41_1();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>In de camping</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"javascript:displayMenu41_2();\" onmouseout=\"javascript:hideMenu41_2();\" BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>In de buurt</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");

	document.write(	"	</TABLE>");

	document.write(	"</DIV>");


//<!-- SOUS MENU POUR acces -->

	



//<!-- SOUS SOUS MENU POUR LES hébergements/camping -->

	var satX = mulX+specW-2;
	document.write(	"	<DIV ID='ID_MENU31_1' style=\"position: absolute; left:"+satX+"px; top:162px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31_1();displayMenu31();' onmouseout='hideMenu31_1();hideMenu31();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='camping_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Description</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='camping_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Prijs</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");

//<!-- SOUS SOUS MENU POUR LES hébergements/camping -->

	var satX = mulX+specW-2;
	document.write(	"	<DIV ID='ID_MENU31_2' style=\"position: absolute; left:"+satX+"px; top:187px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31_2();displayMenu31();' onmouseout='hideMenu31_2();hideMenu31();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='mobil-home_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Description</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='mobil-home_nl.htm#tarif'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Prijs</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");
	
//<!-- SOUS SOUS MENU POUR LES hébergements/camping -->

	var satX = mulX+specW-2;
	document.write(	"	<DIV ID='ID_MENU31_3' style=\"position: absolute; left:"+satX+"px; top:212px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31_3();displayMenu31();' onmouseout='hideMenu31_3();hideMenu31();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='chalet_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Description</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='chalet_nl.htm#tarif'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Prijs</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");
//<!-- SOUS SOUS MENU POUR LES hébergements/tipis -->

	var satX = mulX+specW-2;
	document.write(	"	<DIV ID='ID_MENU31_4' style=\"position: absolute; left:"+satX+"px; top:237px; width:150px; height:50px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu31_4();displayMenu31();' onmouseout='hideMenu31_4();hideMenu31();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='50' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='tipis_nl.htm'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Description</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='tipis_nl.htm#tarif'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Prijs</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");
//<!-- SOUS SOUS MENU POUR LES activités/camping -->

	var satX = hypX+specW-2;
	document.write(	"	<DIV ID='ID_MENU41_1' style=\"position: absolute; left:"+satX+"px; top:162px; width:150px; height:75px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu41_1();displayMenu41();' onmouseout='hideMenu41_1();hideMenu41();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='75' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-camping_nl.htm#sport'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Sportactiviteiten</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-camping_nl.htm#enfants'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Voor Kinderen</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-camping_nl.htm#spectacles'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Avond Activiteiten</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");
	
//<!-- SOUS SOUS MENU POUR LES activités/environs -->

	var satX = hypX+specW-2;
	document.write(	"	<DIV ID='ID_MENU41_2' style=\"position: absolute; left:"+satX+"px; top:187px; width:150px; height:75px; border-width:1; background-color='#FFFFFF'\" z-index:1 onmouseover='displayMenu41_2();displayMenu41();' onmouseout='hideMenu41_2();hideMenu41();'>");

	document.write(	"	<TABLE  BORDER='0' WIDTH='150'  HEIGHT='75' BGCOLOR="+colorMenuBorder+">");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-environs_nl.htm#sport'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Sportactiviteiten</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-environs_nl.htm#visites'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Te bezoeken</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"		<TR>");
	document.write(	"			<TD onmouseover=\"this.bgColor=colorMenu\" onmouseout=\"this.bgColor=colorMenuOut\" onClick=\"location='activite-environs_nl.htm#culture'\"  BGCOLOR="+colorMenuOut+" style=\"color:"+txtColor+";font-weight:bold;\">");
	document.write(	"				<CENTER>Cultuur</CENTER>");
	document.write(	"			</TD>");
	document.write(	"		</TR>");
	document.write(	"	</TABLE>");

	document.write(	"</DIV>");

}

// FONCTIONS POUR LES TYPES D'IMAGES

function displayMenu11() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='visible';
  }
}		

	
function hideMenu11() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU11.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU11').style.visibility='hidden';
  }
}


// FONCTIONS POUR IMAGES SPECTRALES

function displayMenu21() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU21.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU21').style.visibility='visible';
  }
}		

	
function hideMenu21() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU21.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU21').style.visibility='hidden';
  }
}



// FONCTIONS POUR IMAGES MULTI

function displayMenu31() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU31').style.visibility='visible';
  }
}		

	
function hideMenu31() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU31').style.visibility='hidden';
  }
}



// FONCTIONS POUR IMAGES HYPER

function displayMenu41() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU41').style.visibility='visible';
  }
}		

	
function hideMenu41() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU41').style.visibility='hidden';
  }
}


// FONCTIONS POUR LIENS

function displayMenu51() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU51.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU51').style.visibility='visible';
  }
}		

	
function hideMenu51() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU51.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU51').style.visibility='hidden';
  }
}


// FONCTIONS POUR hebergements camping

function displayMenu31_1() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_1.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU31_1').style.visibility='visible';
  }
}		

	
function hideMenu31_1() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_1.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU31_1').style.visibility='hidden';
  }
}
// FONCTIONS POUR hebergements mobilhome

function displayMenu31_2() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_2.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU31_2').style.visibility='visible';
  }
}		

	
function hideMenu31_2() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_2.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU31_2').style.visibility='hidden';
  }
}
// FONCTIONS POUR hebergements chalet

function displayMenu31_3() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_3.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU31_3').style.visibility='visible';
  }
}		

	
function hideMenu31_3() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_3.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU31_3').style.visibility='hidden';
  }
}
// FONCTIONS POUR hebergements tipis

function displayMenu31_4() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_4.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU31_4').style.visibility='visible';
  }
}		

	
function hideMenu31_4() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU31_4.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU31_4').style.visibility='hidden';
  }
}
// FONCTIONS POUR activités camping

function displayMenu41_1() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41_1.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU41_1').style.visibility='visible';
  }
}		

	
function hideMenu41_1() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41_1.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU41_1').style.visibility='hidden';
  }
}
// FONCTIONS POUR activités environs

function displayMenu41_2() 
{                     
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41_2.style.visibility='visible';
  }
  else
  {
       document.getElementById('ID_MENU41_2').style.visibility='visible';
  }
}		

	
function hideMenu41_2() 
{                    
  if (navigator.appName=='Microsoft Internet Explorer')
  {
       document.all.ID_MENU41_2.style.visibility='hidden';
  }
  else
  {
       document.getElementById('ID_MENU41_2').style.visibility='hidden';
  }
}