

function init() {
	/* Vorbelegung Suchfeld */
	document.getElementById('tx-indexedsearch-searchbox-sword').value = 'Suche';
}

function clearSearchfield() {
	if (document.getElementById('tx-indexedsearch-searchbox-sword').value == 'Suche') {
		document.getElementById('tx-indexedsearch-searchbox-sword').value = '';
		document.getElementById('tx-indexedsearch-searchbox-sword').style.color = '#000';
	}
}