// JavaScript Document
$(document).ready(function() {
						   
	/* Behavious to highlight a table row and apply the HREF link to the whole row */
	$("table.datatable tbody tr").hover(
		function() { $(this).addClass("hover"); }, 
		function() { $(this).removeClass("hover");
	}).click( function() { location.href = $(this).find("a")[0].href; });		
	
});
