/*
	equalize.js
		
	-Requires jQuery
	-equalizes the heights of elements classed with .resizeTarget

*/


var EQ = {
	eqTargetClass:	'.resizeTarget',
	equalizePanels : function () {
		var maxHeight = 0;
		$(this.eqTargetClass).each (function () {
			var panelHeight = $(this).height();
			maxHeight = panelHeight > maxHeight ? panelHeight : maxHeight;
		});	
		$(this.eqTargetClass).height (maxHeight);
	}
};