var space;

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

$(window).resize(function() {
    setPosition();
});

function setPosition() {
    if( $(window).width() > 1024 ){
        space = ( $(window).width() - 1024 ) / 2;
		$('body').find('#galleryholder').css({
            width: $(window).width() - $('body').find('#gallerybar').width() + "px"
        });
    }
    else {
        space = 0;
		$('body').find('#galleryholder').css({
            width: 1024 - $('body').find('#gallerybar').width() + "px"
        });
    }
    $('body').find('#bar_left').css({
        width: space + "px"
    });
    $('body').find('#main').css({
        width: space + 624 + "px"
    });

    if( $(window).height() > 768 ){
		$('body').find('#wrapper').css({
            height: "100%"
        });
        $('body').find('#content_holder').css({
            height: $(window).height() - 330 + "px"
        });
        $('body').find('.scroll-pane').css({
            height: $(window).height() - 330 + "px"
        });
        $('body').find('#main').css({
            height: $(window).height() - 203 + "px"
        });
    }
    else{
		$('body').find('#wrapper').css({
            height: "768px"
        });
        $('body').find('#content_holder').css({
            height: 768 - 330 + "px"
        });
        $('body').find('.scroll-pane').css({
            height: 768 - 330 + "px"
        });
        $('body').find('#main').css({
            height: 768 - 203 + "px"
        });
    }
}

