// JavaScript Document
	function loadContent() {
		if (document.formGeotop.Geotop.value == "-------------------------------") {
			parent.contentFrame.location.href='content.php';
		} else {
			parent.contentFrame.location.href='content.php?gt='  + document.formGeotop.Geotop.value + '&kapitel=heute';
		}
	}
	
	function changePicBack(id) {
		document.getElementById(id).src = "pics/pfeil_blau.jpg"; 
	}
		
	function changePic(id) {
		document.getElementById(id).src = "pics/pfeil_blau_hover.jpg";
	}

	function show(wort) {
		//alert(document.getElementById(wort));
		document.getElementById(wort).style.display = "inline";
	}	
	
	function hide(wort) {
		document.getElementById(wort).style.display = "none";
	}