$(function(){
	
	// Opening external links in new window and adding event tracking
	$("a[href*='http://']:not([href*='aiganeworleans.org'])").addClass("new-window");
	$('a.new-window').each(function() {
		$(this).attr("title", "Visit "+$(this).attr("href")+" (Opens in a new window)");
	    $(this).attr("target", "_blank");
		$(this).attr("onclick", "pageTracker._trackEvent('Outlinks', 'Click', '"+$(this).attr("href")+"');");
	});
	
		
});
