function trackMe(id, d) {
	var host = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	var s = document.createElement('script');
	if (s) {
		s.src = host + 'google-analytics.com/ga.js';
		s.type = "text/javascript";
		document.getElementsByTagName('head')[0].appendChild(s);
		var walk = 0;
		ga(id, d);
	}

	function ga(id, d) {
		if (typeof _gat == "object") {
			var p = _gat._getTracker(id);
			if (p) {
				p._setDomainName(d);
				p._initData();
				p._trackPageview();
			}
		} else if (walk++ < 20) {
			setTimeout(ga, 500);
		}
	}
}

var l = document.location.hostname;
if (!l) {
	l = document.location.host;
}

if (l == 'www.pimpinone.nl' || l == 'www.pimpinone.com') {
	trackMe('UA-5888764-4', 'pimpinone.com');
} else if (l == 'www.koninginnedagconcert.nl') {
	trackMe('UA-5888764-5', 'koninginnedagconcert.nl');
} else {
	trackMe('UA-5888764-1', 'schopfung.nl');
}
