/*index game hover*/
$(function(){
$("#game_line>li").hover(
function(){$(this).addClass("g_hover")},
function(){$(this).removeClass("g_hover")}
);
});
