$(document).ready(function() {
	var checkQueryString = window.location.href;
	var odmap="674104"; //Default $1 SC
	var tfmap="674105"; //Default Truly Free SC
	// Add mapped source codes here.  tfArray = Truly Free source codes, odArray = One Dollar source codes
	var tfArray = ['674031','674035','674037','674033','674039','674117','674105','676065'];
	var odArray = ['674032','674036','674038','674034','674040','674118','674363','674971'];
	for(i=0; i< odArray.length; i++) { 
		odvalue=odArray[i];
		tfvalue=tfArray[i];
		if (checkQueryString.indexOf(tfvalue)!=-1||checkQueryString.indexOf(odvalue)!=-1) {
			tfmap=tfvalue;
			odmap=odvalue;
			break
			}
		}
	$("a.tflink").each(function(){
		this.href=this.href.replace("tfsc",tfmap);
		})
	$("a.odlink").each(function(){
		this.href=this.href.replace("odsc",odmap);
		})
});
