$(document).ready(function(){
    
    setPosition();

});


$(window).resize(function() {

    setPosition();
    
});

function setPosition() {

    if( $(window).height() > 768 ){
		$('body').find('#wrapper').css({
            height: "100%"
        });
        $('body').find('#galleryholder').css({
            height: $(window).height() - 204 + "px"
        });
		
    }
    else {
		$('body').find('#wrapper').css({
            height: "768px"
        });
        $('body').find('#galleryholder').css({
            height: "564px"
        });
		
    }

}
