// Create redirects based on referrer

var refarray = new Array();
//refarray['infowars.com'] = "http://shop.snyderhealth.com/welcome.php?ref=1";

refarray['infowars.com'] = "http://shop.snyderhealth.com/water_ionizers.php?ref=2";

for (var i in refarray) {
if (document.referrer.indexOf(i) != -1) window.location.replace(refarray[i]);
}
