jQuery().ready(function() {
    $("img:below-the-fold").lazyload({ 
        placeholder : webroot + "img/grey.gif",
        effect : "fadeIn"
    });
    
    if ($('#images').hasClass('thumbs')) {
        $("#images a:has(img)").attr('rel', 'gallery').fancybox({ 
            'padding': 0,
            'overlayOpacity': 0.6
        });
        $(window).bind('load', function() {
            var size = $('#images span:first').width();
            $('#images img').each(function() {
                if ($(this).width() < $(this).height()) {
                    $(this).parents('span:first').addClass('panel');
                    $(this).css('marginTop', parseInt((size - $(this).height()) / 2));
                } else {
                    $(this).css('marginLeft', parseInt((size - $(this).width()) / 2));
                }
            });
        });
    }
});
