jQuery(function(){
	
	$("a[rel*='external']").attr('target', '_blank');
	$("a[rel*='external']").click(function() {
		pageTracker._trackPageview('/outbound/' + $(this).attr('href'));
	});

	//column equalizer
	$(window).load(function() {//necessary to wait for images to load
		$('#episode_info.column').each(function() {
			var $thisCol = $(this);
			var $thisHeight = $thisCol.height() - $thisCol.css('margin-top').replace(/px/, '') - $thisCol.css('margin-bottom').replace(/px/, '') ;
			var $nextCol = $thisCol.next('.column');
			var $nextHeight = $nextCol.height() - $thisCol.css('margin-top').replace(/px/, '') - $thisCol.css('margin-bottom').replace(/px/, '');
			if ($thisHeight < $nextHeight) {
				$thisCol.height($nextHeight);
			} else {
				$nextCol.height($thisHeight);
			}
		});
	});
});
