$(document).ready(function() {

    // OPEN LINK IN NEW WINDOW
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

	// RESIZES BOXES
	var boxHeight = 0;
 	$('.catalog-item').each(function(){
 		if($(this).height() > boxHeight) {
 			boxHeight = $(this).height();
 		}
 	});
	$('.catalog-item').height(boxHeight);

});
