// Plugin Created by Alex Moss: http://alex-moss.co.uk/
//Plugin Site: http://pleer.co.uk/wordpress/plugins/rel-external/    	
jQuery(function(){jQuery('a[rel*=external]').click(function(){
	_gaq.push(['_trackEvent', 'Outbound Links', 'Links', this.href]); 
	//console.log(this.href);
	//_gat._getTrackerByName()._trackEvent('Outbound Links', this.href);
	//window.open(this.href);
	setTimeout('loadExternalLink("' + this.href + '")', 1000);
	//loadExternalLink(this.href);
	return false;
});});

function loadExternalLink(strExternalLink) {
	window.open(strExternalLink);
}
