/**
 * @author Munish Dabas / Fi NY
 */

/**
 * DOM-Ready function
 * 
 * No behaviors are executed on the page until this event fires.
 */
$(document).ready(function () {
	var maxht=0;
	var contents = $('.pods').find('.content');
	// make all pods the same height
	$(contents).each(function(){
		if(maxht < $(this).height()){
			maxht = $(this).height();
		}
	});
	
	$(contents).each(function(){
		$(this).height(maxht);
	});
	
});