/**
 * This JavaScript file is only used for games.
 */

//Heighlight game box on mouse over and out
jQuery(document).ready(function($) {
	$(".game_box_link").mouseover(function() {
		$('.game_box', $(this)).css("background-color", "red");
	}).mouseout(function() {
		$('.game_box', $(this)).css("background-color", "#000000");
	});
});
