﻿$(document).ready(function() {
	var domain = document.domain;
	var selector = "a:[hostname!='" + domain + "'][href!='#']:not([href^='javascript'])";

	$(selector).each(function(index, el) {
		el.target = "_blank";
	});

	$(selector).click(function(el) {
		var href = this.href;

		recordOutboundLink('Outbound Links', 'Click', href);

		setTimeout('', 100);
	});
});

function recordOutboundLink(category, action, label) {
	_gaq.push(['_trackEvent', '' + category + '', '' + action + '', '' + label + '']);
}
