function trackRemoteClick(url) {
	if (pageTracker) {
		pageTracker._trackEvent('Links', 'Click', url);
	}
}

$(document).ready(function() {
	var host = window.location.host;
	$("a").each(function (i) {
		var href = this.href;
		if (this.host != host && href.indexOf("rumbleware.com") == -1) {
			$(this).bind("click", function(e) {
				trackRemoteClick(this.href);
			});
		}
	});
	
});
