$(document).ready(function() {
	tracker();
});


function tracker() {
	$links = $(document.getElementsByTagName('a')).not('footer a');
	
	$links.click(function(event) {
		text = $(this).text();
		_gaq.push(['_trackEvent', 'Links', 'Click', text]);
	});
}
