(function($){$.fn.equalHeights=function(minHeight,maxHeight){tallest=(minHeight)?minHeight:0;this.each(function(){if($(this).height()>tallest){tallest=$(this).height()}});if((maxHeight)&&tallest>maxHeight)tallest=maxHeight;return this.each(function(){$(this).height(tallest)})}})(jQuery)
$(window).load(function(){
	if($(".maxheight-1").length){
	$(".maxheight-1").equalHeights()}
	if($(".maxheight-2").length){
	$(".maxheight-2").equalHeights()}
	if($(".maxheight-3").length){
	$(".maxheight-3").equalHeights()}

})
