$(document).ready(function() { $('.featurebox:last').css('margin-right','0px');/* ------------------------------- */// Equal Heights/* ------------------------------- */function equalHeight(group) {    tallest = 0;    group.each(function() {       thisHeight = $(this).height();       if(thisHeight > tallest) {        tallest = thisHeight;      }    });    group.height(tallest);}equalHeight($(".col"));});
