var j = jQuery.noConflict();
window.onload = function heighUpdate(){
    var h = j("#right_bar").height();
        while (h%50) {
            j("#right_bar").height(h++);
        }
};

