// Makes sure the DOM is ready
$(document).ready(GI_init);

// Finds the link with the appropriate class. Springs into action when the link is clicked
function GI_init(){
	$("a.gameTitle").click(function(){
		GI_show();
		return false;
	});
}

function GI_show(){
	$("#gameInfo").slideToggle("slow");
}