// toggle translation from visible to invisible
jQuery(document).ready(function ($){
	$(".languageSwitch:first").before("<div class='languages'><span class='english'>Read in English</span><span class='tagalog'>Read in Tagalog</span></div>"); // Inserts translation btns
	$(".languages .english").hide(); // hides english btn
	$(".languageSwitch:last").hide(); // hides 2nd languages div (tagolog text)
	$(".languages span").click(function () {
		$(".languageSwitch").toggle() // toggles text visibility
		$(".languages span").toggle(); // toggles btn visibility
	});
});


jQuery(document).ready(function ($){
	$(".languages span").hover(function () {
		$(this).stop().fadeTo('fast', '0.50');
		}, function () {
		$(this).stop().fadeTo('fast', '1.00');
	});
});



// find and add google tracking links to aryty.com and .com.ph links
jQuery(document).ready(function ($){
	$('a[href*=ww.aryty.com]').not('a[href*=www.aryty.com.ph]').each(function() {
		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?rc=sendloadtothephilippines&utm_medium=s.referral&utm_source=sendloadtothephilippines');
	}); 

	$('a[href*=www.aryty.com.ph]').each(function() {
		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?utm_medium=s.referral&utm_source=sendloadtothephilippines');
	}); 

	$('a[href*=www.eloadfree.com]').each(function() {
		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?utm_medium=s.referral&utm_source=sendloadtothephilippines');
	}); 

	$('a[href*=www.freephilippinesimcard.com]').each(function() {
		$(this).attr('href', RegExp("[^#]+$").exec($(this).attr('href')) + '?utm_medium=s.referral&utm_source=sendloadtothephilippines');
	}); 

});