jQuery.fn.documentTracking = function (){
    return this.each(function (){
		$(this).click(function(){
			pageTracker._trackPageview($(this).attr("href"));
		});
	});
};

