// jQuery wrapper 
(function ($) {
	// DOM ready
	$(function () {
		var	$table = $('table.simpleTable.fullRowLinks').addClass('js'),
			$tr;
	
		$tr = $('thead', $table).length ? $('tbody tr:has(a)', $table) : $('tr:has(a)', $table); // exclude the tablerows in thead

		$tr.bind('click.simpleTable', function(){
			var url = $(this).find("a").attr("href");
			window.location.href = url;
		});
		
		$tr.bind("mouseenter.simpleTable mouseleave.simpleTable", function(){
			$(this).toggleClass("hover");
		});
		
	});
}(jQuery));
