function resize() 
{
    var body = $("body").width();
    var leftcol_w = $("#left").width();
    var rightcol_w = $("#right").width();
    var w = body - (leftcol_w+rightcol_w);
    $("#center").css("width",w);
    var leftcol_h = $("#left").height();
    var rightcol_h = $("#right").height();
    var center_h = $("#center").height();
    var max_h = (leftcol_h>rightcol_h && leftcol_h>center_h?leftcol_h:center_h>rightcol_h?center_h:rightcol_h);
    $("#left").css("height",max_h); 
    $("#right").css("height",max_h);
    $("#center").css("height",max_h); 
}

$(document).ready(function() {
    $("body").pngFix(); 
    resize();

    $("a[rel^='prettyPhoto']").prettyPhoto(
    {
    showTitle: false,
    theme: 'light_square'}
    );

    
});

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

