﻿$(document).ready(function() {
	setTimeout(adjustHeights, 5000);
});

function adjustHeights() {
	var tallest = 0;

	$('table.LandingTable td div.Description').each(function(i) {
		if ($(this).height() > tallest) { tallest = $(this).height(); }
	});

	$('table.LandingTable td div.Description').css('height', tallest);

	tallest = 0;

	$('table.LandingTable td div.Thumbnail').each(function(i) {
		if ($(this).height() > tallest) { tallest = $(this).height(); }
	});

	$('table.LandingTable td div.Thumbnail').css('height', tallest);

	$('table.LandingTable td div.Thumbnail').each(function(i) {
		height = $(this).height();
		img = $(this).children('img');

		img.css('margin-top', (height - img.height()) / 2);
	});
}
