$(document).ready(function() {

	// Alter all links which start with http:// to open in a new window
	$("a[href^='http://'],a[rel='newWindow']").each(function() {
		$(this).click(function() {
			window.open(this.href);
			return false;
		})
	});

	var pageTracker = _gat._getTracker("UA-8378013-1");
	pageTracker._trackPageview();

});