/**
 * Javascript Library
 *
 * @author Sjon, http://sjons.com/
 * @copyright Sjon, 2008, all rights reserved
 */

$(document).ready(function() {
	/* Google Analytics */
	// <a href="http://www.example.com" onClick="javascript:pageTracker._trackPageview('/outgoing/example.com');">
	$('a').each(function() {
		if (this.href.substr(0, 7) == 'http://' && this.href.substr(0, 16) != 'http://sjons.com/') {
			this.onclick = function() {
				pageTracker._trackPageview('/outgoing/' + this.href.substr(7));
			};
		}
	});
	/* /Google */
});


