$(document).ready(function() {
    resize_body();
    $(window).resize(function(){
        resize_body();
    });
    $('#Gallery a').lightBox();
    $('.Logo').click(function(){
        window.location.href="/";
    });
    $('#Link1170Group1').mouseover(function(){
        $('.PictureBox').css('background','url(/skin/cassady/images/swap_painting.jpg)');
    });
    $('#Link1171Group1').mouseover(function(){
        $('.PictureBox').css('background-image','url(/skin/cassady/images/swap_print.jpg)');
    });
    $('#Link1172Group1').mouseover(function(){
        $('.PictureBox').css('background-image','url(/skin/cassady/images/swap_sculpture.jpg)');
    });
    $('#Link1173Group1').mouseover(function(){
        $('.PictureBox').css('background-image','url(/skin/cassady/images/swap_cv.jpg)');
    });
    $('#Link1174Group1').mouseover(function(){
        $('.PictureBox').css('background-image','url(/skin/cassady/images/swap_links.jpg)');
    });
    $('.HomeMenu li').mouseout(function(){
        $('.PictureBox').css('background-image','none');
    });
});
function resize_body(){
    body_height=$(window).height();
    if($("#Gallery").height()>body_height-100){
        body_height=$("#Gallery").height()+200;
    }else{

    }
    body_width=$(window).width();
    list_right_width=$(window).width()-190;
    footer_height=30;
    home_top=(body_height-footer_height)/3;
    home_bottom=home_top*2;
    list_bottom=body_height-91;
    home_logo_margin_top=home_top/2 - 15;
    home_flash_margin_top=home_top/2 - 35;
    $('.Container').css('height',body_height);
    $('.HomeTop').css('height',home_top);
    $('.HomeBottom').css('height',home_bottom);
    $('.ListBottom').css('height',list_bottom);
    $('.HomeBottomLeft').css('height',home_bottom);
    $('.ListBottomLeft').css('height',list_bottom);
    $('.HomeBottomRight').css('height',home_bottom);
    $('.ListBottomRight').css('height',list_bottom);
    $('.ContentBottom').css('min-height',list_bottom);
    $('.ListBottomRight').css('width',list_right_width);
    $('.HomeTop .Logo').css('margin-top',home_logo_margin_top);
    $('.HomeTop .Flash').css('margin-top',home_flash_margin_top);
    $('.HomeMenu').css('margin-left',($('.HomeBottomLeft').width())/4 -50)
    $('.PictureBox').css('right',($('.HomeBottomLeft').width())/8)


}

