function goSetHeight(){
	jQuery(".box-row").each(function(){
		var maximaImgHeight=0;
                                //loop over all to get the max height
		jQuery(".content-image-p-and-s .img-container-relative", this).each(function(){
			nuHeight = jQuery(this).children().height();

			if(nuHeight > maximaImgHeight){
				maximaImgHeight = nuHeight;
			}
                                });
                                //loop over all to set the max height
                                jQuery(".content-image-p-and-s .img-container-relative", this).each(function(){
			jQuery(this).height(maximaImgHeight);
			jQuery(this).children().css("position","absolute");
		});
		var maximaTxtHeight=0;
                                //loop over all to get the max height
		jQuery(".content-image-p-and-s .highlight", this).each(function(){
			nuHeight = jQuery(this).height();

			if(nuHeight > maximaTxtHeight){
				maximaTxtHeight = nuHeight;
			}
                                });
                                //loop over all to set the max height
		jQuery(".content-image-p-and-s .highlight", this).each(function(){
			jQuery(this).height(maximaTxtHeight);
			//jQuery(this).children().css("position","absolute");
		});
	});
};
