var addthis_offset_top = 10;

$(document).ready(function(){
    $("a[rel^='prettyPhoto']").prettyPhoto();
    $(".video img.play_button").fadeTo(0, 0.5);

    $(".video").hover(
        function () {
            $(this).find("img.play_button").fadeTo(0, 1);
        },
        function () {
            $(this).find("img.play_button").fadeTo(0, 0.5);
        }
    );

    $("img.play_button").click(function(){
        var $a = $(this).prev().find('a');
        // external url
        if (!$a.attr('rel')) {
            window.open($a.attr('href'), "_blank")
        } else {
            $a.click();
        }
    });
});

