// JavaScript Document

function LigneOnMouseOver(src,color) {
	ExCL = src.style.backgroundColor;
	src.style.backgroundColor = color;
}


function LigneOnMouseOut(src) {
	src.style.backgroundColor = ExCL;
}