
window.onload = function() {
	var switcher = document.getElementById("lang-switcher").firstChild;
	var loc = window.location.host;
	if(loc.indexOf(".nl")>0) {
		switcher.href="http://www.serutrade.com"+window.location.pathname;
		switcher.innerHTML = "Switch to English";
		switcher.className = "to-en";
	} else if (loc.indexOf(".com")>0) {
		switcher.href="http://www.serutrade.nl"+window.location.pathname;
		switcher.innerHTML = "Toon in nederlands";
		switcher.className = "to-nl";
	}
}