﻿/*! Rehearsal Space London, EonicWeb Ltd. */
(function ($) {

	$(function () {
		matchFeaturedListTitleHeights();
	});

	function matchFeaturedListTitleHeights() {
		$('.FeaturedList').each(function () {
			var $list = $(this),
				maxHeights = {};

			// Determine max title height in each row
			$list.find('.listItem').each(function () {
				var $listItem = $(this),
					row = $listItem.attr('class').match(/row(\d+)/)[1],
					height = $listItem.find('.title').height();

				if (typeof maxHeights[row] == 'undefined') {
					maxHeights[row] = 0;
				}

				if (height > maxHeights[row]) {
					maxHeights[row] = height;
				}
			});

			// Apply padding-top to top of heading, equal to difference between height and max
			$list.find('.listItem').each(function () {
				var $listItem = $(this),
					row = $listItem.attr('class').match(/row(\d+)/)[1],
					height = $listItem.find('.title').height(),
					paddingTop = maxHeights[row] - height;

				$listItem.find('.title').css({ paddingTop: paddingTop });
			});
		});
	}

})(jQuery);
