$(document).ready(function() {
	
	$('table.crudIndex tr').addClass('hideControls');
	
	$('table.crudIndex tr').hover(
		function() {
			$(this).removeClass('hideControls');
			$(this).addClass('hover');
		}, 
		function() {
	  		$(this).addClass('hideControls');
			$(this).removeClass('hover');
		}
	);

});
