

$(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() { if ($(this).find("a").length > 0) {$(this).find("a").click();}  
	});
	
	$("#attachments table tbody tr").hover(
		function() { $(this).addClass("hover"); }, 
		function() { $(this).removeClass("hover");
	}).click( function() { location.href = $(this).find("a")[0].href; });		
	
});

function setNav() {
	$(".galleryNav").click( function() { 
		var src = $(this).attr("rel");
		var alt = $(this).attr("title");
		$("#galleryImage").attr("src", src).attr("alt", alt);
		$("#galleryImageDesc").html(alt);
		return false;
	});
}