// find and add google tracking links to aryty.com and .com.ph linksjQuery(document).ready(function ($){	$('a[href*=www.aryty.com]').not('a[href*=www.aryty.com.ph]').each(function() {		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?rc=showbizlandia&utm_medium=s.referral&utm_source=showbizlandia');	}); 	$('a[href*=www.aryty.com.ph]').each(function() {		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?utm_medium=s.referral&utm_source=showbizlandia');	}); });