jQuery(function (){
	evenHeight();
});
				 

function evenHeight(){
  div = $('.homebox-content');

  maxHeight = 0;

  for(i=0; i<div.length; i++){
    if(maxHeight < $(div[i]).height()){
      maxHeight = $(div[i]).height();
    }
  }

  for(i=0; i<div.length; i++){
    $(div[i]).css('height', maxHeight+'px');
  }
}
