$(document).ready(function() {
	
	// make teaser equal height:
	height = 0;
	$('.tx-mbteaser-pi1 .teaser').each(function() {
		this_height = $(this).height();
		if(this_height > height) {
			height = this_height;
		}
	}).css('height', height).find('.wrap').css('height', height);
	
	// make teaser clickable:
	$('.tx-mbteaser-pi1 .teaser').clickbox();
	
});
