$(function() {
  if($('#carousel').length > 0) {
    var stripHeight = 0;  
    $('#carousel img').each(function() { stripHeight += $(this).height(); });
    
    if($.browser.msie && $.browser.version == '6.0') { stripHeight = stripHeight - 3; }
    
    $('#carousel').height(stripHeight);
    $('#content').height(stripHeight);
    $('#content .scrollable').height(stripHeight - 120);
  }
});
