// JavaScript Document
//$(document).ready(function() 
//{
	ip=remote_addr();
	prefixe="../";
	if (index_html == "" || index_html == "index") prefixe="";
	if (!opacity) opacity=0.66;
	if (document.getElementById("menu_acces"))
	{
		menu_haut="";
		//menu_haut+="<a href=\""+prefixe+"couronne_plage/index.html\" ><img class=\"logo\" src=\"/Images/logos/logo_couronne_plage.gif\" alt=\"La Couronne-plage : Centre de vacances\" title=\"La Couronne-plage : Centre de vacances\" name=\"couronne_plage\" height=\"100\" border=\"0\" id=\"couronne_plage\" /></td>";
		menu_haut+="<a href=\""+prefixe+"hippocampe/index.html\" ><img class=\"logo\" src=\"/Images/logos/logo_hippocampe.gif\" alt=\"L’Hippocampe : Village résidentiel de loisirs\" title=\"L’Hippocampe : Village résidentiel de loisirs\" name=\"hippocampe\" height=\"100\" border=\"0\" id=\"hippocampe\" /></td>";
		menu_haut+="<a href=\""+prefixe+"arquet/index.html\" ><img class=\"logo\" src=\"/Images/logos/logo_arquet.gif\" alt=\"L’Arquet : Camping, emplacements mobile homes, tentes, caravanes, camping car\" name=\"arquet\" height=\"100\" border=\"0\" id=\"arquet\" title=\"L’Arquet : Camping, emplacements mobile homes, tentes, caravanes, camping car\" /></a></td>";
		menu_haut+="<a href=\""+prefixe+"halle/index.html\"><img class=\"logo\" src=\"../halle/Images/logo_halle.gif\" alt=\"La Halle de Martigues : scène nationale de spectacles\" title=\"La Halle de Martigues : scène nationale de spectacles\" name=\"hallemartigues\" height=\"100\" border=\"0\" id=\"hallemartigues\" /></a></td>";
		menu_haut+="<a href=\""+prefixe+"port_maritima/index.php\" ><img class=\"logo\" src=\"../port_maritima/Images/logo_port_maritima.gif\" alt=\"Port Maritima : Port à sec de Martigues\" title=\"Port Maritima : Port à sec de Martigues\" name=\"portmaritima\" height=\"100\" border=\"0\" id=\"portmaritima\" /></a></td>";
		menu_haut+="<a href=\""+prefixe+"salon_nautique/index.html\" ><img class=\"logo\" src=\"../salon_nautique/Images/logo_salon_nautique.gif\" alt=\"salon_nautique\" title=\"salon_nautique\" name=\"salonnautique\" height=\"100\" border=\"0\" id=\"salonnautique\" /></a></td>";
		menu_haut+="<a href=\""+prefixe+"stationnement/index.html\" ><img class=\"logo\" src=\"../stationnement/Images/logo_stationnement.gif\" alt=\"stationnement de Martigues\" title=\"stationnement de Martigues\" name=\"portmaritima\" height=\"100\" border=\"0\" id=\"portmaritima\" /></a></td>";
		//$("#menu_acces").html(menu_haut);
		document.getElementById("menu_acces").innerHTML=menu_haut;
	}
	
	if (document.getElementById("retour_accueil"))
	{
		retour="<a href='../index.html'><img src='images/logo_"+index_html+".gif' width=120 height=120></a>";
		//$("#retour_accueil").html(retour);
		document.getElementById("retour_accueil").innerHTML=retour;
	}
	html_menu_bas="<br><br>";
	html_menu_bas+="<table align=center height='100' border='0' cellspacing=3>";
	html_menu_bas+="	<tr valign='middle' height='10%'>";
	html_menu_bas+="		<td align='center' colspan='3'>";
	//html_menu_bas+="			<a href='"+prefixe+"couronne_plage/index.html'>LA COURONNE-PLAGE</a> | ";
	html_menu_bas+="			<a href='"+prefixe+"hippocampe/index.html'>L'HIPPOCAMPE</a> |"; 
	html_menu_bas+="			<a href='"+prefixe+"arquet/index.html'>L'ARQUET</a> | ";
	html_menu_bas+="			<a href='"+prefixe+"halle/index.html'>LA HALLE DE MARTIGUES</a> |"; 
	html_menu_bas+="			<a href='"+prefixe+"port_maritima/index.html'>PORT MARITIMA</a> |"; 
	html_menu_bas+="			<a href='"+prefixe+"salon_nautique/index.html'>SALON NAUTIQUE</a> |"; 
	html_menu_bas+="			<a href='"+prefixe+"stationnement/index.html'>STATIONNEMENT</a> |";
	html_menu_bas+="			 ";
	html_menu_bas+="			<a href='/marches_legaux/marches_legaux.php'>MARCHES LEGAUX</a><br>";
	html_menu_bas+="		</td>";
	html_menu_bas+="	</tr>";
	html_menu_bas+="	<tr style='padding-top:20px;'>";
	html_menu_bas+="		<td align='center' width='33%'>";
	html_menu_bas+="			<a href='http://www.afaq.org/' target='_blank'>";
	html_menu_bas+="				<img src='"+prefixe+"images/logos/logo_afaq.jpg' alt='norme iso AFAQ' height='80' border='0' />";
	html_menu_bas+="			</a>";
	html_menu_bas+="		</td>";
	html_menu_bas+="		<td align='center' width='33%'>";
	html_menu_bas+="			<a href='"+prefixe+"semovim.html'>";
	html_menu_bas+="				<img src='"+prefixe+"images/logos/logo_semovim.gif' alt='semovim de martigues' name='semovim' height='80' border='0' id='semovim' />";
	html_menu_bas+="			</a>";
	html_menu_bas+="		</td>	";
	html_menu_bas+="		<td align='center' width='33%'>";
	html_menu_bas+="			<a href='/index.html'>";
	html_menu_bas+="				<img src='"+prefixe+"vignette_publicite.gif' alt='en ce moment...' name='semovim' height='80' border='0' id='vignette_publicite' />";
	html_menu_bas+="			</a>";
	html_menu_bas+="		</td>	";
	html_menu_bas+="	</tr>";
	html_menu_bas+="</table>";


	//$("#menu_bas").html(menu_bas);
	if (document.getElementById("menu_bas"))
	{
		document.getElementById("menu_bas").innerHTML=html_menu_bas;
	}
	else
	{
		alert("menu_bas n'existe pas");
	}



	$(".logo").fadeTo("fast",opacity);
	$(".logo").hover (
		function () {
		  $(this).fadeTo("fast",1);
		}, 
		function () {
		  $(this).fadeTo("fast",opacity);
		}
	);
	$(".menu_page").hover (
		function () {
		  $(this).addClass("menu_page_actif",1);
		}, 
		function () {
		  $(this).removeClass("menu_page_actif",1);
		}
	);
//});

