// Front pod height adjustments
function setPodsHeight() {
	if (!$("pods")) return false;
	var max = 0;
	var items = $("pods").childElements();
	if (items.length > 0) {
		items.each(function(e) {
			if (e.getHeight()>max) {
				max = e.getHeight();
			}
		});
		max-=18; // just because it's too much
		items.each(function(e) {
			if (!e.hasClassName("clear")) {
				e.select("div[class='content']").each(function(itm) {
					itm.setStyle({
						height:max+"px"
					});
				});
			}
		});
	}
}
Event.observe(window,"load",function(){
	setPodsHeight();
});