//innitiate all hyperlinks with the tracker click code and mark this page as a landing page
var elements = document.getElementsByTagName('a');
for (i = 0; i < elements.length; i++) {
	var elem = elements[i];
	var att = elem.getAttribute("onClick");
	var res = screen.width + 'x' + screen.height;
	if (elem.hasAttribute("href") && elem.getAttribute("href").substring(0,11) != "javascript:" && elem.getAttribute("href").substring(0,7) != "mailto:") {
		var loc = document.location.toString();
		if (loc.indexOf('\#') > -1) {
			loc = loc.substr(0, loc.indexOf('\#'));
		}
		elem.setAttribute("onClick", att + "; document.location = 'http://bettingscoop.com/includes/tracking.php?refer=" + escape(elem.getAttribute("href")) + "&page=" + loc + "&type=click&res=" + res + "'; return false");
	}
	document.write("<img src=\"http://bettingscoop.com/includes/tracking.php?refer=" + loc + "&page=" + document.referrer + "&type=landing&res=" + res + "\" alt=\"\" width=\"1\" height=\"1\">");
}

