/* 2009 Copyright PhoneTheMental */

// Onclick go to home
function accueil() {
	window.location.href = "index.html";
}

// Turn the mouse pointer to a hand
function mouse() {
	document.getElementById("lg").className = "vrlg";
}

// Hide division
function gethide(d) {
	document.getElementById(d).className = "dvhide";
}

/*
// Fixer la photo
function fixPhoto(mg, p) {
	document.getElementById(mg).src = 'images/' + p + '_ptm.jpg';
}
*/

// Afficher la photo
function showPhoto(fp, f) {
	document.getElementById(fp).src = 'images/' + f + '_ptm.jpg';
}

/*
// Cacher la photo
function hidePhoto(hp, h) {
	document.getElementById(hp).src = 'images/' + h + '_ptm.jpg';
}
*/