﻿$().ready(function () {
    $(".calendarList .event a").hover(function () {
        $(".summary", $(this)).show();
    },
        function () {
            $(".summary", $(this)).hide();
        });

    $(".close").click(function (event) {
        $(this).parent(".descriptionHolder").hide();

    });
});
