$(document).ready(function(){
  $("a.target_blank").click(function(){
	// Track external link with Google
	if($(this).attr('name')) {
		external_link = $(this).attr('name');
	} else {
		external_link = $(this).html();
	}
	if(typeof pageTracker !== 'undefined') pageTracker._trackPageview('/ext/' + external_link);
	
	// Redirect to new window
	window.open(this.href);
    return false;
  });
});

$(document).ready(function(){
  $("a.target_external").click(function(){
	// Track external link with Google
	if($(this).attr('name')) {
		external_link = $(this).attr('name');
	} else {
		external_link = $(this).html();
	}
	if(typeof pageTracker !== 'undefined') pageTracker._trackPageview('/ext/' + external_link);
  });
});