/* ALPHA EDITION GENERAL SCRIPTS */

// Equalize heights of elements (jQuery)
function equalHeight(group) {
	var tallest = 0;
	group.each(function() {
		var thisHeight = jQuery(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}

// init searchform visualizations
Event.observe(window, "load", function(){
		Searchform.init("searchform", "query");
		liveSearchInit();
	});
