$(document).ready(function(){
    $('#gallery img').hide().load(function() {
        $('#gallery').removeClass('loading');
    $(this).fadeIn();
});
$('#gallery img').hide();
$(window).load( function() {
    $('#gallery').removeClass('loading');
    $('#gallery img').fadeIn('slow');
});
$('.more').click(function(){
    $(this).next().slideToggle(500);
});
    $('a[rel*=facebox]').facebox();
});
