// linkTracking - Tracking various link clicks through Google Analytics
// Requires jQuery, Google analytics
 
$(document).ready(function() {
 
	/*
		Track External Link Clicks 
 
		Add the attribute rel="external" to any external link
		on your site, and this function will track the click. 
 
		Click reported as: /custom-tracking/outgoing-link/{url of link clicked}
	*/	
 
	$('a[rel="external"]').click(function(){
		customLink = '/external/' + $(this).attr('href');
		pageTracker._trackPageview(customLink);
	});	
 
/* =================================================================== */
 
});
