var quickSearchLabel = 'Suche ...';function initSearch() {	var node = document.getElementById('quicksearch-sword');	if (node) {		if (node.getAttribute('value') == '') {			node.setAttribute('value',quickSearchLabel);		}		node.onfocus = function () {			if (this.getAttribute('value') == quickSearchLabel) {				this.setAttribute('value','');			}		};		node.onblur = function () {			if (this.getAttribute('value') == '') {				this.setAttribute('value',quickSearchLabel);			}		};	}	}function initDMenu() {	initSearch();}
