﻿function setSize() {
    var w = $(document).width();
    /*var lh = $("#left").height();
    var ch = $("#centerContent").height();*/
    
    $("#container").css("width", (w < 900 ? "900px" : (w < 1180 ? "100%" : "90em")));
    //if (lh > ch) $("#centerContent").css("height", lh)
}
