$(document).ready(function(){ find_external_links(); });
function find_external_links() {
//	$('a.offsite').bind( 'click', function(el){ external_link(el); } );
	$("#top_nav").find("a").bind( 'click', function(el){ which_link(el, 'top_nav'); } );
	$("#subnav_left").find("a").bind( 'click', function(el){ which_link(el, 'top_subnav'); } );
	$("#experts").find("a").bind( 'click', function(el){ which_link(el, 'experts'); } );
	$("#also_from").find("a").bind( 'click', function(el){ which_link(el, 'also_from'); } );
	$("#free_reports").find("a").bind( 'click', function(el){ which_link(el, 'free_reports'); } );
	$("#more_advice").find("a").bind( 'click', function(el){ which_link(el, 'more_advice'); } );
	$("#most_read").find("a").bind( 'click', function(el){ which_link(el, 'most_read'); } );
	$("#other_advice").find("a").bind( 'click', function(el){ which_link(el, 'other_advice'); } );
}
function external_link(ev)
{
	// ntptLinkTag(ev.target.href);
	ntptAddPair("href", ev.target.href);
	ntptEventTag("ev=offsite_link");
}
function which_link(ev, zone)
{
	ntptAddPair("href", ev.target.href);
	ntptAddPair("zone", zone);
	ntptEventTag("ev=link");
}

