// To create equal heights of the homepage widget boxes

$j=jQuery.noConflict();

$j.fn.equalizeHeights = function(){
  return this.height(Math.max.apply(this, $j(this).map(function(i,e){ return $j(e).height() }).get() ) )
}

$j(document).ready(function() {
  //aFunction('ready');
  $j('.homepage-featured-box').equalizeHeights();
  //aFunction('resized');
});








