$(function() {  
	//Insert functions here to run on pageload
	$('tr', $('#ctl06_gvList')).not('tr:last-child').hover(
		function() {
			$(this).addClass('row_over');
		},
		function() {
			$(this).removeClass('row_over');
		}
	);

    $('tr', $('table.leagues_tbl')).hover(
		function() {
		    $(this).addClass('row_over');
		},
		function() {
		    $(this).removeClass('row_over');
		}
	);

	
    $('tr', $('#tblCommish')).hover(
		function() {
		    $(this).addClass('row_over');
		},
		function() {
		    $(this).removeClass('row_over');
		}
	);
	
	$('#navigation div#qm0 a').hover(
		function() {
			$(this).addClass('nav_over');
		},
		function() {
			$(this).removeClass('nav_over');
		}
	);

});
