$("document").ready(function() {
    $(".gameDay").mouseenter(function() {
        $(this).children(".gameEvent").fadeIn("normal");
        $(this).css("background", "#ededed")
        $(this).css("border-color", "#c1c1c1")
    });
    $(".gameDay").mouseleave(function() {
        $(this).children(".gameEvent").fadeOut("normal");
        $(this).css("background", "#f8f8f8")
        $(this).css("border-color", "#f8f8f8")
    });
});
