var current_profile_panel_height = null;

function resize_inner_border() {
    setTimeout(function () {
        current_profile_panel_height = $('#profile-panel-wrap').height();
        if (current_profile_panel_height > 700) {
            $('#innerBorder').css({'min-height': current_profile_panel_height});
        }
    }, 300);
}
function update_analytics(url, params) {
    try {
        __gaq.push(['_trackPageview', url, params]);
    } catch (err) {}
}

