// fonction pour les roolOver MSIE
function changeOnRollOver(div) {
	obj = document.getElementById(div);
	obj.oldColor = obj.style.backgroundColor;
	obj.style.backgroundColor = "#E24000";
	obj.onmouseout = function() {
		this.style.backgroundColor = this.oldColor;
	}
}

