/* ************************************** */

/* JQuery - run on DOM ready */
$(function() {			
	// **********************
	var maxHeight = 0;
	$('.equalHeight').each(function(){
		if ($(this).height()>maxHeight) maxHeight = $(this).height();
	}).each(function(){
		$(this).height(maxHeight);
 	});
	
});