$(function () {
    $('.spliced_images img').each(function () {
        $(this).wrap('<a rel="' + $(this).parents('div.post').find('h2').attr('id') + '" href="' + $(this).attr('src') + '"></a>');
    });
    
    $('.spliced_images a').fancybox();
    $('.spliced_images').find('img:gt(0)').hide();
    
    $('.post:last-child').addClass('last');
    
    $('.entry .contact-link').each(function () {
        var titleText = $(this).parents('.entry').find('h2').text();
        $(this).attr('href', $(this).attr('href') + '?subject=[Anfrage] ' + encodeURI(titleText));
    });
});
