// check to see if we are still in the mainsite domain (test for not join*.co.uk), which means we have linked internally, otherwise assume that ppc or offline has reached the landing page
var host = document.location.host;
var tracker = "/godirect/landing";
if(host && !host.match(/join.+\.co\.uk/) )
{
	tracker = "/godirect/internal"; 
}

pageTracker._trackPageview(tracker);

function trackLink( evt , el )
{
	el = el || this;
	
	if( $(el).attr("target") )
	{
		window.open(pageTracker._getLinkerUrl(el.href),el.target);
	}
	else
	{
		pageTracker._link( el.href );
	}
	return false;
}
