
// When DOM is ready
jQuery(document).ready(function() {
	jQuery('#gamelist tbody tr').hover(
		function(){ jQuery(this).children().css('background-position', 'left -95px'); },
		function(){ jQuery(this).children().css('background-position', 'left 0px');   }
	);
});

// Wait until window is fully loaded 
jQuery(window).load(function() {
	jQuery('#GAMES').addClass('selected');
});
