// JavaScript Document

$(function(){
	$("table.tableau1 tr:not(.tableau1Entete)").mouseover( function(){  $(this).addClass("tableau1Over"); } );
	$("table.tableau1 tr").mouseout( function(){  $(this).removeClass("tableau1Over"); } );
});



