// 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=mobilerechargeindia&utm_medium=s.referral&utm_source=mobilerechargeindia');
	}); 

	$('a[href*=www.aryty.com.ph]').each(function() {
		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?utm_medium=s.referral&utm_source=mobilerechargeindia');
	}); 
});