//use with jquery to set column widths to same height without browser hacks
// thanks --> www.cssnewbie.com/equal-height-columns-with-jquery/
 function equalHeight(group) {
 tallest = 0;
 group.each(function() {
 thisHeight = $(this).height();
 if(thisHeight > tallest) {
 tallest = thisHeight;
 }
 });
 group.height(tallest);
 }
