
$(function(){

	$.expr[':'].external = function(obj){
	  return (!obj.href.match(/^mailto:/)
	  && !obj.href.match(/^javascript:/)
	  && obj.hostname != document.location.hostname)
	  || (obj.href.match(/link\.cfm/));
	};

	$('a:external').click(function(){
	  var url = $(this).attr('href');
	  var type = 'Link';
	  if (url.match(/link\.cfm/)) {
	    url = unescape(url.split('/link.cfm?address=')[1]);
	    type = 'Redirect';
	  }
	  _gaq.push(['_trackEvent','Outbound',type,url]);
	});
});
