﻿function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

$(document).ready(function () {
    $(".bottomleft-content-container .ms-WPTitle").append("<img src='/Style%20Library/Airweb/i/wp-icon-left.png' style=' position: absolute; margin-left: 20px;margin-top:-10px;'>");
    $(".bottomcenter-content-container .ms-WPTitle").append("<img src='/Style%20Library/Airweb/i/wp-icon-mid.png' style=' position: absolute; margin-left: 20px;margin-top:-10px;'>");
    $(".bottomcenter-right-content-container .ms-WPTitle").append("<img src='/Style%20Library/Airweb/i/wp-icon-right.png' style=' position: absolute; margin-left: 20px;margin-top:-10px;'>");
    $(".farbottom-content-container .ms-WPTitle").append("<img src='/Style%20Library/Airweb/i/wp-icon-bottom.png' style=' position: absolute; margin-left: 20px;margin-top:-10px;'>");

    equalHeight($("div.homepage-bottom-row"));
});
