;
$(function() {
			function getHost(url) {
				var host = "null";
				if (typeof url == "undefined" || null == url)
					url = window.location.href;
				var regex = /.*\:\/\/([^\/]*).*/;
				var match = url.match(regex);
				if (typeof match != "undefined" && null != match)
					host = match[1];
				return host;
			}
			ref = document.referrer;
			if (ref != null && ref != "undefined") {
				domain = getHost(ref);
				if (domain != 'www.8nod.com' && domain != '8nod.com') {
					$.get('/e/public/GotoSite/link_in.php?domain=' + domain);
				}
			}
		});

