
$(document).ready(function(){
	//Keep column 1 and column 2 the same height:
	//Cache columns
	var $column1 = $('#content .column-1');
	var $column2 = $('#content .column-2');
	
	var maxHeight = Math.max($column1.height(), $column2.height());
	
	$column2.css('height', maxHeight);
	
	
	//Custom slideshow controls
	$('#content.global .column-2 a.cityimg, #content.people .column-2 a').click(function(){
		var slide = $(this).attr('data-slide');
		$('#slider').anythingSlider(slide);
		return false;
	});
	
	
	//Wrap external posts in permalink anchor
	$('.tag-external').each(function(){
		var linkHref = $(this).find('a').eq(0).attr('href');
		$(this).wrap('<a href="' + linkHref + '">');
	});
});

