$(function() {
    var s1_height = $('#sidebar-left').height();
    var s2_height = $('#sidebar-right').height()+25;
    var c_height = $('#content').height();
    var max = 0;
    if (s1_height > c_height) {
        max = s1_height;
    } else {
        max = c_height;
    }
    if (s2_height > max) {
        max = s2_height;
    }
    if ( max > c_height ) {
        $('#content').height(max);
    }
    $('#sidebar-right').height(max-25);

    $('#bottom .wrapper').jCarouselLite({
        auto: 900,
        speed: 2000,
        visible: 9
    });
});
