/* Elliot Barer, ebarer [at] mac [dot] com, XX/YY/2011 */


$(document).ready(function() {

	$('.ext').click(function(){ 	//Open external links in new window
		window.open(this.href);
		return false; 
	});

});
