$.fn.google_tracking = function(){
	go_action = $(this).attr("title").toLowerCase();
	go_url = $(this).attr("href");
	go_rel = $(this).attr("rel").toLowerCase();
	if(go_action == ""){go_action=go_url;}
	if(go_rel == ""){go_rel = "Outbound Links";}
	if(typeof _gaq != "undefined"){
		_gaq.push(['_trackEvent', go_rel, go_action, go_url]);
	}
	if($(this).attr("target") != "_blank"){
		location.href = go_url;
	}
}

$(document).ready(function() {

	$("a.track").click(function(){
		$(this).google_tracking();
		
		if($(this).attr("target") != "_blank"){
			return false;
		}

	});
	
});
