var move = false;

	function hideImage(){
		var cadre = getObj("cadre_photo");
		cadre.style.display = "none";
		return false;
	}

	function displayImage(nom){
		afficheChargement();
		var image = getObj("photo");
		image.src = "" + nom + "_400.jpg";

		var cadre = getObj("cadre_photo");
		cadre.style.display = "inline";
		
		return false;
	}

	function afficheChargement(){
		var texte = getObj("chargement");
		texte.style.display = "inline";

		return false;
	}

	function masqueChargement(){
		var texte = getObj("chargement");
		texte.style.display = "none";

		return false;
	}

	function mouseMoving(e){
	//	if(move){
			var cadre = getObj("cadre_photo");
			cadre.style.left = "" + (getCursorX(e) - 5) + "px";
			cadre.style.top = "" + (getCursorY(e) - 5) + "px";
	//	}
	}

	function rien(){}

	function startMoving(){
		var cadre = getObj("cadre_photo");
		cadre.style.cursor = "move";
		move = true;
		document.onmousemove = mouseMoving;
	}

	function stopMoving(){
		var cadre = getObj("cadre_photo");
		document.onmousemove = rien;
		move = false;
		cadre.style.cursor = "default";
	}