$(document).ready(function() {

    $("#container").corner();

    /*$("#container").corner("top");

    if(jQuery.browser.msie && parseInt(jQuery.browser.version) <= 7) {
        $("#container").corner("bottom 5px");
    }
    else {
        $("#container").corner("bottom");
    }*/


    // subpages
    if($("body#homepage").length == 0) {
        $("#sidebar").height($("#container").height() - 320).corner("br 7px");  // 320 is height of header image plus some extra space
    }
    else {
        if(jQuery.browser.msie /*&& parseInt(jQuery.browser.version) <= 7*/) {
            $("#sidebar").height($("#container").height() - 330).corner("br 7px");  // 296 is height of header image plus some extra space
        }
        else {
            $("#sidebar").height($("#container").height() - 317).corner("br 7px");  // 296 is height of header image plus some extra space
        }
    }

    $("#homepage_content").corner("bl 7px");
    /*$("body#homepage #sidebar").height($("#container").height() - 340).corner("br 7px");  // 320 is height of header image plus some extra space
    $("body#homepage #container").height($("body#homepage #container").height() - 20);*/


    // scroll contact form page to errors because they might not be seen in a small window
    // scroll contact form page to thank-you message for the same reason
    /*if($("ul.error").length > 0 || $.url.param("thank") == 1) {
        window.scroll(0, 500);
    }*/
});
