// JavaScript Document

function showMenu(type) { 
	if (type==1) {
		var inputHTML = "<div style='height:95px' class='deroulant_infos'>";
		inputHTML  += "<a href='/partir-en-club.php' target='_parent'>Qui sommes-nous ?</a><br>";
		inputHTML  += "<a href='/contact.php' target='_parent'>Contactez nous</a><br>";
		inputHTML  += "<a href='/presse.php' target='_parent'>Espace presse</a><br>";
		inputHTML  += "<a href='/sites.php' target='_parent'>Nos autres sites</a><br>";
		inputHTML  += "<a href='/parrainage.php' target='_parent'>Parrainage</a><br>";
		inputHTML  += "</div><img src='/images/cale.gif' width='160' height='10' onMouseOver='hideMenu(1)'>";
		}
	if (type==2) {
		var inputHTML = "<div style='height:55px' class='deroulant_infos'>";
		inputHTML  += "<a href='/cgv.php' target='_parent'>Conditions de vente</a><br>";
		inputHTML  += "<a href='/assurances/' target='_parent'>Assurances</a><br>";
		inputHTML  += "<a href='http://www.speedresa.com/clients/index.php?AGENCE=P04' target='_parent'>Suivi de commande</a><br>";
		inputHTML  += "</div><img src='/images/cale.gif' width='160' height='10' onMouseOver='hideMenu(2)'>";
		}
	if (type==3) {
		var inputHTML = "<div style='height:55px' class='deroulant_infos'>";
		//inputHTML  += "<a href='#' target='_blank'>Formalités douanières</a><br>";
		inputHTML  += "<a href='/index_frame.php?page=visas' target='_parent'>Visas et formulaires</a><br>";
		inputHTML  += "<a href='http://www.diplomatie.gouv.fr/fr/' target='_blank'>Ministère des Aff. Et.</a><br>";
		inputHTML  += "<a href='http://www.nationalchange.com/boutique/index_affilie.cfm?num=EXAMONDE' target='_blank'>Change et devises</a><br>";
		inputHTML  += "</div><img src='/images/cale.gif' width='160' height='10' onMouseOver='hideMenu(3)'>";
		}
	if (type==4) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez toutes nos offres en formule<br> \"Tout compris\"</a></div>";
		}
	if (type==5) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez toutes nos offres \"2 semaines\"</a></div>";
		}
	if (type==6) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez nos offres \"Spécial enfants/ados\"</a></div>";
		}
	if (type==7) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez toutes nos offres \"Croisières\"</a></div>";
		}
	if (type==8) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez toutes nos offres \"Clubs\"</a></div>";
		}
	if (type==9) {
		var inputHTML = "<div style='width:155px' class='descriptif_pave'>";
		inputHTML  += "<a href='#' target='_parent'>Retrouvez nos offres \"Clubs\"</a></div>";
		}
	div = document.getElementById('calque_zones_'+type);
	div.innerHTML = inputHTML;
	div.style.display='block'
	div.style.visibility='visible';
	/*if (type==1 || type==2 || type==3) {
		document.getElementById(type).style.visibility='hidden';
	}*/
	}

function hideMenu(type) {
	document.getElementById('calque_zones_'+type+'').style.visibility="hidden";
	/*if (type==1 || type==2 || type==3) {
		document.getElementById(type).style.visibility='visible';
	}*/
	}
	
function deplaceMenu(type) {
	var left = event.x;
	var top = event.y;
	document.getElementById('calque_zones_'+type+'').style.top = (top + 40)+" px";
	document.getElementById('calque_zones_'+type+'').style.left = (left - 80) +" px";
	}

function hideAllMenu() {
	document.getElementById('calque_zones_1').style.visibility="hidden";
	document.getElementById(1).style.visibility='visible';
	document.getElementById('calque_zones_2').style.visibility="hidden";
	document.getElementById(2).style.visibility='visible';
	document.getElementById('calque_zones_3').style.visibility="hidden";
	document.getElementById(3).style.visibility='visible';
	/*document.getElementById('calque_zones_4').style.visibility="hidden";
	document.getElementById(4).style.visibility='visible';*/
	}