		// Hover a row in <tbody>
		$(document).ready(function() {
			$("tbody tr").hover(
				function() 
				{
					// This gets executed on mouse-over
					$(this).toggleClass('hover');
				}, 
				function() 
				{
					// This is the callback, so it gets executed on mouse-out
					$(this).toggleClass('hover');
				}
			);
		});
	