function showHideTransport(status){
	/// .style
	var maDiv = document.getElementById('transports');
	if(status==1){
		
	    //affiche	
		maDiv.style.display = "inline";
		
	}else{
		//hide	
		//alert("hide");
		maDiv.style.display = "none";
	}
	
}



/*******************/
function resizeMenu(){
	var largeur = 0;
	var hauteur = 0;
	if( typeof( window.innerWidth ) == 'number' ) {
	  largeur = window.innerWidth;
	  hauteur = window.innerHeight;
	  }
	else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	  largeur = document.documentElement.clientWidth;
	  hauteur = document.documentElement.clientHeight;
	  }
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	  largeur = document.body.clientWidth;
	  hauteur = document.body.clientHeight;
	  }
	else {
	  largeur = -1;
	  hauteur = -1;
	  }
	if(largeur>930){
		document.getElementById("pmenu").style.marginLeft = (largeur - 631) /2 + "px";
		document.getElementById("menu").style.right = "0px"
	}else{
		document.getElementById("pmenu").style.marginLeft = "150px";
		document.getElementById("menu").style.left = "0px"
	}
	
	
	if(hauteur<620){
		if(navigator.appName!="Microsoft Internet Explorer"){
			document.getElementById("pmenu").style.marginLeft =  parseInt(document.getElementById("pmenu").style.marginLeft) - 10 + "px";
		}
	}
	
	//document.getElementById("pmenu").style.backgroundColor = "white";
	document.getElementById("pmenu").style.display = "block";
	// BARRE EN BAS (BUG IE)
	if(navigator.appName=="Microsoft Internet Explorer"){
		if(navigator.appVersion.indexOf("MSIE 6") != -1){

			if(hauteur < 588){
				//document.getElementById("bordBottom").style.top = "550px";
				document.getElementById("bordBottom").style.display = "none";
				document.getElementById("bordRigth").style.display = "none";
				
				
			}else{
				document.getElementById("bordBottom").style.display = "block";
				document.getElementById("bordRigth").style.display = "block";
				//document.getElementById("bordBottom").style.top = "";
				//document.getElementById("bordBottom").style.bottom = "0px";
				if(largeur < 975){
					document.getElementById("bordBottom").style.display = "none";
					document.getElementById("bordRigth").style.display = "none";
				}else{
					document.getElementById("bordBottom").style.display = "block";
					document.getElementById("bordRigth").style.display = "block";
				}
				
				
			}
		}	
	}
}

function marginImg(numero){
	//alert("height : " + listFotosSizeHeight[numero] + "\n" + "Width : " + listFotosSizeWidth[numero] );
	
	document.images["monImage"].style.marginTop = "0px";
	
	if(listFotosSizeWidth.length > 0){
		var heightDisplayed;
		var ratio;
		ratio = 390 / listFotosSizeWidth[numero] * 100;
		heightDisplayed = ratio * listFotosSizeHeight[numero] / 100;
		
		if(heightDisplayed < 454){
			document.images["monImage"].style.marginTop = "46px";
		}
	}
}


