
// jQuery display functions 

	$(document).ready( function () {
							 
	// faux hover effects, only apply if JS is enabled
	$('div.bluebox, div#currentMatchList tr').mouseover( function () {
		$(this).toggleClass('hover');								
	});
	$('div.bluebox, div#currentMatchList tr').mouseout( function () {
		$(this).toggleClass('hover');								
	});

});



