$(function(){
function phila_reflow(){
if ( $('.equal').length > 0 ) {
//equalizeByRow: true to force each instance of equalizer to work individually
var equalizerOptions = {
equalizeOnStack: true,
equalizeByRow: true,
equalizeOn: 'small'
};
$('.equal-height').each( function() {
$(this).find('.equal').attr('data-equalizer-watch','');
});
var equalHeight = new Foundation.Equalizer($ ('.equal-height'), equalizerOptions );
}
}
setTimeout(phila_reflow, 500);
});