$(document).ready(function() {
    $('.eventwrap').hover(
    function() {
        $(this).find('.day').css({
            'text-indent': '-999px'
        });
        $(this).find('.info').stop().animate({
            'left': '60px'
        },
        300);
    },
    function() {
        $(this).find('.day').css({
            'text-indent': '0px'
        });
        $(this).find('.info').stop().animate({
            'left': '-400px'
        },
        1000, "easeOutExpo");
    }
    );
    
    $('.eventwrap').click(function() {
        var $a = $(this).find("h2 a");
        window.location = $a.attr("href");
    });
});
