$(function() {

	$('.equal-table tr').each(function() {
		var max = 0;
		$(this).find('.inner').each(function(k, i) {
			if ( $(i).height() > max ) max = $(i).height();
		});
		$(this).find('.inner').height(max);
	});

	$('.equal-table tr').each(function() {
		var max = 0;
		$(this).find('.block-content-inner').each(function(k, i) {
			if ( $(i).height() > max ) max = $(i).height();
		});
		$(this).find('.block-content-inner').height(max);
	});

	// used in video system
	$('.equal-table').each(function() {
		var max = 0;
		$(this).find('.block-content.plus').each(function(k, i) {
			if ( $(i).height() > max ) max = $(i).height();
		});
		$(this).find('.block-content.plus').height(max);
	});

});

$(document).ready(function() {

	$('.module-content div').each(function() {
		var max = 0;
		$(this).find('.block-content-inner').each(function(k, i) {
			if ( $(i).height() > max ) max = $(i).height();
		});
		$(this).find('.block-content-inner').height(max);
	});

});
