jQuery(document).ready(function($){
	
	var external_domains = new Array();
	external_domains = [
		"http://www.boomtownig.com",
		"http://www.painternetmarketing.com",
		"http://www.pa-websitedesign.com",
		"http://www.marylandinternetmarketing.com",
		"http://www.maryland-websitedesign.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;

			});
		});	
	}
});
