function zoom_image(nom_image){
	
	var zoom_image = document.getElementById("zoom");
	zoom_image.style.backgroundImage = "url("+nom_image+")";
	
}

function zoom_restore(nom_image){

	var zoom_image = document.getElementById("zoom");
	zoom_image.style.backgroundImage = "url("+nom_image+")";
}