jQuery(document).ready(function($) {

    $('#the-bug').click(
        function(){
            $(this).animate({
                opacity: 0
            }, 5000,
            function(){
                $(this).animate({
                    opacity: 1
                }, 1000);
            });
        });
    $('#the-bug').bind("contextmenu",function(e){
        e.preventDefault();
    });

    $('.article-picture').each(function(){
        var data = $(this).metadata();
        var href = $(this).attr('href');
        $(this).parent().find('small').prepend('credit: <a title="'+data.credit+'" href="'+href+'" target="_blank">'+data.credit+'</a>');
    });


});



