window.onclick = function () {
	masqueMenu()
}

function image_change(url, id) {
	document.getElementById(id).src = url;
}

function afficher(id) {
	document.getElementById(id).style.display = "block";
}
function cacher(id) {
	document.getElementById(id).style.display = "none";
}


function masqueMenu() {
	
	cacher("chambres");
	
}
