$(document).ready(function() {
        /*GALLERY*/
        $('.gallery a').lightBox();

        /*PAGE HEIGHT*/
        $('#all2').css({'height':($(document).height())+'px'});

        $(window).resize(function(){
                $('#all2').css({'height':($(document).height())+'px'});
        });
});

