$(function(){
    var fadeSpeed = 150;
    $('.backside').parent().hover(function(){
        $('.frontside, .backside', this).stop(true).css('opacity', 1);
        var node = this;
        $('.frontside', node).fadeOut(fadeSpeed, function(){
            $('.backside', node).fadeIn(fadeSpeed);
        });
    }, function(){
        $('.frontside, .backside', this).stop(true).css('opacity', 1);
        var node = this;
        $('.backside', node).fadeOut(fadeSpeed, function(){
            $('.frontside', node).fadeIn(fadeSpeed);
        });
    });

    $('.backside').parent().click(function(){
        $('h2 a', this.parentNode).each(function(){
            window.location.href = this.href;
        });
    });
});
