$(function(){
	$('table.flatList tbody tr').hover(
		function(){
			if ($(this).hasClass('reserved')) {
			} else {
			    $(this).addClass('hover');
			}
		},
		function(){
			if ($(this).hasClass('reserved')) {
			} else {
			    $(this).removeClass('hover');
			}
		}
	);

});