/** 2009/08/13 dewa m widyakumara
  * desc    : Google Analytic Outgoing Link Tracker
  * requires: google analytic code, jQuery 1.2.1 or higher
  * usage   : simply include this file from html
  **/
jQuery(document).ready(function() {
	jQuery('a').click(function() {
		if(this.href.indexOf(location.host) == -1) {
			pageTracker._trackPageview('/outgoing/' + this.href.match(/:\/\/(.[^/]+)/)[1]);
			}
		});
	});
