// JavaScript Document
sfHover = function() {
	var sfEls = document.getElementById("navigatie").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

function taalkeuze(taal){
	if(taal=="Nederlands")window.location="http://www.tvh.com/new2";
	if(taal=="Engels")window.location="http://www.tvh.com/newen2";
	if(taal=="Frans")window.location="http://www.tvh.com/newf2";
	if(taal=="Duits")window.location="http://www.tvh.com/newd2";
	if(taal=="Spaans")window.location="http://www.tvh.com/news2";
	if(taal=="Portugees")window.location="http://www.tvh.com/newp2";
	if(taal=="Italiaans")window.location="http://www.tvh.com/newi2";
	if(taal=="Deens")window.location="http://www.tvh.com/newdk2";
	if(taal=="Pools")window.location="http://www.tvh.com/newpl2";
	if(taal=="Roemeens")window.location="http://www.tvh.com/newro2";
	if(taal=="Turks")window.location="http://www.tvh.com/newt2";
	if(taal=="Zweeds")window.location="http://www.tvh.com/newsv2";
	if(taal=="Arabisch")window.location="http://www.tvh.com/newar2";
	if(taal=="Chinees")window.location="http://www.tvh.com/newcn2";
	if(taal=="Japans")window.location="http://www.tvh.com/newjp";
	if(taal=="Russisch")window.location="http://www.tvh.com/newru2";
}

if(screen.width<1000)document.write('<link rel=stylesheet href="http://www.tvh.com/css/stylesheetk.css">')