/*
The name of the keys in the numcode array are what the query values are:

if the referrer is index.php?jkid=xxxxxx then it returns 877-343-4698 
if the referrer is index.php?Ck1TqTm7=a then it returns 877-343-4698
if the referrer is index.php?Ck1TqTm7=b then it returns 877-343-4707
etc.
else it defaults to 866-668-4895

*** YOU CANNOT CHANGE "dflt" as this is the number that ***
*** displays when there's not query, or an invalid query. ***
*/
var numcode		=	new Array(2);	// set to the size that we're defining

/* BEGIN REMOVE THIS BLOCK IF YOU'D LIKE TO HAVE ADDL NUMBERS BASED ON YOUR QUERY VAR
numcode["a"]	=	"877-343-4698";	// 1...
numcode["b"]	=	"877-343-4707";	// 2...
numcode["c"]	=	"877-343-4709";	// 3...
numcode["d"]	=	"877-343-4694";	// 4...
numcode["e"]	=	"866-393-9057";	// 5...
numcode["f"]	=	"866-455-9143";	// 6...
numcode["g"]	=	"866-668-4894";	// 7...
numcode["h"]	=	"866-835-0971";	// 8...
numcode["i"]	=	"866-861-8438";	// 9...
numcode["j"]	=	"866-509-6824";	// 10...
numcode["k"]	=	"866-835-0965";	// 11...
numcode["l"]	=	"866-758-5023";	// 12...
numcode["m"]	=	"866-835-0969";	// 13...
numcode["n"]	=	"866-835-0970";	// 14...
numcode["o"]	=	"888-758-5135";	// 15...
numcode["p"]	=	"888-758-5023";	// 16...
numcode["q"]	=	"866-880-6566";	// 17...
numcode["r"]	=	"866-509-7152";	// 18...
numcode["s"]	=	"866-537-9804";	// 19...
numcode["t"]	=	"866-393-9059";	// 20...
numcode["u"]	=	"866-861-8440";	// 21...
numcode["v"]	=	"866-761-4686";	// 22...
END REMOVE THIS BLOCK IF YOU'D LIKE TO HAVE ADDL NUMBERS BASED ON YOUR QUERY VAR */

numcode["ppc"]	=	"877-343-4698";	// 1...
numcode["dflt"]	=	"866-668-4895";	// 2...

// set domain to the root domain of the website
domain			=	"viacord.com";

/*
the first argument is the query to search for,
and the second argument is the cookie's name.
*/
phoneNum		=	viaNum("jkid", "viaNum");
/*phoneNum		=	viaNum("Ck1TqTm7", "viaNum");*/
