jQuery(document).ready(function() {
    var hsidebar = $('#sidebar').height()-251;
    var hcontent = $('#content').height();
    if (hsidebar > hcontent) {
        $('#content').height(hsidebar - 60);
    }
    if ( hcontent > hsidebar ) {
        $('#sidebar').height(hcontent + 314);
    }
    $('#sidebar .menu li:odd').addClass('odd');
});
