// Developed by Joel Davis of Yellow Button
// when document is ready
$(function() {
	// make external links open in a new window and trackable in Google Analytics 
	$("a[href^='http']:not([href*='"+location.hostname+"'])")
		.addClass('external')
		.attr('target', '_blank')
		.click(function(){
			pageTracker._trackPageview('/outgoing/'+ $(this).attr('href'));
		});
});
