  $(document).ready(function() {
	  var Ie5Mac = (navigator.userAgent.indexOf('MSIE 5') != -1 && navigator.userAgent.indexOf('Mac') != -1);
	  if(!Ie5Mac) {
	  var ht=new Array()
	  $("#story .col").lt(2).each(function(i) {
    ht[i] = $(this).height();
    });
    var max;
    var coliq;
    if(ht[0] < ht[1]) { max = ht[1]; coliq = 0; }
     else { max = ht[0]; coliq = 1;  }
     max = Math.ceil(max) + 5;
	 
	 $("#story .col").lt(2).height(max);
     var which = $("#story .col").eq(coliq).children(".list").length;
     which = which - 1;
     var expad = max - ht[coliq];
     $("#story .col").eq(coliq).children(".list").eq(which).css("paddingBottom",expad+"px");
     }
    });