function makeScrollable() {
    var height = 0;

    jQuery('#content .block-output').each(function() {
        height += jQuery(this).height();
    });
    
    if (height > 440) {
        jQuery('#content').customScroller();
    }
}

jQuery(document).ready(function() {
   makeScrollable();
   Cufon.replace('h2', { fontFamily: 'Museo 300' });
});
