// Showing Game Title below images

$(function () {
	$(".homeGameMenu img").each(
		function (i) {
			$(this).hover(
				function () {
					$("#homeGameTitle").html($(this).attr("alt"));
				},
				function () {
					$("#homeGameTitle").html("&nbsp;");
				}
				
			);
		}
	);
});