jQuery(document).ready(function($){
	
	var external_domains = new Array();
	external_domains = [
		"http://www.ansafone.com",
		"http://www.answer2.com",
		"http://www.educationcallcenter.com",
		"http://www.answeringcenter.com",
		"http://www.alertcallcenter.com",
		"http://www.checkmate-answers.com",
		"http://www.callcenteransweringservices.com",
		"http://www.www.tascforce1.com"
		];

	// For the hostname we're on, remove that element from the array
	if($.inArray("http://" + window.location.hostname, external_domains) != -1) {
		external_domains.splice($.inArray("http://" + window.location.hostname, external_domains),1);
	}
	
	for(x=0;x<external_domains.length;x++)
	{
		// console.debug(external_domains[x]);
		$("a[href^='" + external_domains[x] + "']").each(function(){
			$(this).click(function(e){
				_gaq.push(['_link', this.href]); return false;

			});
		});	
	}
});
