
$(document).ready(function(){
	
	$('table.listing th a').hover (
		function () {
			$(this).parent().addClass('hover');
		}, function () {
			$(this).parent().removeClass('hover');
		}
	);
	
});