/*

*/
window.onload=function(){
	fillSearchbox();
}
deafaultsearchtext= "Suchwort..."
function fillSearchbox() {
	if (document.getElementById("indexedsearchbox_input").value=="") {
		document.getElementById("indexedsearchbox_input").value=deafaultsearchtext
	}
}
function clearSearchbox() {
	if (document.getElementById("indexedsearchbox_input").value==deafaultsearchtext) {
		document.getElementById("indexedsearchbox_input").value=""
	}
}
/*

$(document).ready(function() {
	$("a.thickbox").click(function(){window.setTimeout("substituteCloseText()", 300);});
	$("a.thickbox").click(function(){window.setTimeout("substituteCloseText()", 600);});
	$("a.thickbox").click(function(){window.setTimeout("substituteCloseText()", 2000);});
});
function substituteCloseText(){
	$('#TB_closeWindow').html(' <a id="TB_closeWindowButton" title="Close" href="javascript:void(0);">[ schließen ]</a> oder Esc')
	$('#TB_closeAjaxWindow').html(' <a id="TB_closeWindowButton" title="Close" href="javascript:void(0);">[ schließen ]</a> oder Esc')
	$('#TB_closeWindowButton').click(function(){self.parent.tb_remove()})
}


*/