 $J(document).ready(function() {
	if($J.browser.msie && parseInt(jQuery.browser.version) < 7) { 	// Add hover for IE6 for elements		
		$J("table.dataTableHover tbody tr").hover(
			function() { $J(this).addClass("hover");}, 
			function() { $J(this).removeClass("hover");}
		);
	}
	$J("table.dataTableHover tbody tr").click(
		function() {
			var a = $J(this).find("td h4").children("a").attr("href");
			location.href = $J(this).find("a").attr("href");
		});
	});