$(document).ready(function() {
	
	$("#tables tbody tr").hover(function() {
			$(this).css("background-color", "#cfc5af");
		},
		function() {
			if($(this).attr("class")=='even') $(this).css("background-color", "#dad5c8");
			else $(this).css("background-color",  "#f2efe9");
		}
	);
});
