// JavaScript Document
//Navigation
<!--
function naviHandler(cat) {
	everything = new Array('cat1','cat2','cat3','cat4','cat5','cat6','cat7','cat8','cat9');
	for (x=0; x<everything.length; x++) {
		//if (everything[x] == cat) {
		//	document.getElementById(everything[x]).style.display = (document.getElementById(everything[x]).style.display == 'block') ? 'none' : 'block'
		//} else {
			document.getElementById(everything[x]).style.display = "none";
		//}
	}
}
//-->

//'Suchbegriff' in der Input Box
<!--
function queryFocus() {
	document.search.query.value = (document.search.query.value == "Suchbegriff") ? "" : document.search.query.value;
}
function queryBlur() {
	document.search.query.value = (document.search.query.value == "") ? "Suchbegriff" : document.search.query.value;
}
-->
