function changeBlocHome(id, url, titre, texte) {
	document.getElementById("bigImage").style.display = "block";
	document.getElementById("mediaPresentation").style.display = "none";
	
	document.getElementById("bigImage").style.background = "url('" + url + "')";
	document.getElementById("titre_bloc").innerHTML= titre.replace("\\","");
	document.getElementById("texte_bloc").innerHTML = texte.replace("\\","");
	
	for(var i=0; i<4; i++) {
		highlightBlocHome(i,false);
		document.getElementById("bloc_" + i).onmouseover = function(){var theId = this.id.split("_"); highlightBlocHome(theId[1],true)};
		document.getElementById("bloc_" + i).onmouseout = function(){var theId = this.id.split("_"); highlightBlocHome(theId[1],false)};
	}
	
	highlightBlocHome(id,true);
	document.getElementById("bloc_" + id).onmouseover = function(){};
	document.getElementById("bloc_" + id).onmouseout = function(){};
}

function highlightBlocHome(id, mode) {
	if(mode) {
		document.getElementById("bloc_" + id).className = "bloc_domaine_home_hover";
		document.getElementById("num_bloc_" + id).className = "num_bloc_home_" + (parseInt(id)+1) + "_hover";
		document.getElementById("bloc_titre_" + id).className = "home_titre_bloc_hover";
		document.getElementById("bloc_separator_" + id).className = "separator_bloc_hover";
		document.getElementById("bloc_texte_" + id).className = "home_titre_text_bloc_hover";
	}
	else {
		document.getElementById("bloc_" + id).className = "bloc_domaine_home_" + id%2;
		document.getElementById("num_bloc_" + id).className = "num_bloc_home_" + (parseInt(id)+1);
		document.getElementById("bloc_titre_" + id).className = "home_titre_bloc";
		document.getElementById("bloc_separator_" + id).className = "separator_bloc";
		document.getElementById("bloc_texte_" + id).className = "home_titre_text_bloc";
	}
}
