function startList () {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("SubNavigation");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.className+=" over";
				}
				node.onmouseout=function() {
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}

function openWebcam(sprache){
	//window.open("http://www.hotel-montana.ch/cgi-bin/webcam.cgi","webCamera","menubar=0,location=0,directories=0,toolbar=1,status=0,scrollbars=1,resizable=1,width=580,height=500");
	window.open("http://www.swisswebcams.ch/deutsch/webcam_mappuls_luzern_-_schl%F6ssli_sch%F6negg_(6000_luzern)_wetter_1000667684.html", "webCamera", "menubar=false,location=false,directories=false,toolbar=false,status=false,scrollbars=1,resizable=1,width=900,height=850");
	return false;
}

function openMovie(movieurl){
	movwin= window.open(movieurl,'movieWin','status=yes,scrollbars=yes,resizable=yes,width=350,height=250');
	movwin.focus();
}