$(document).ready(function() {
	var f = $('#search-form input.textfeld');
	if (f.attr('value') == '') f.attr('value','Suchen')
	f.focus(function() {
		if ($(this).attr('value') == 'Suchen') $(this).attr('value','');
	});
	f.blur(function() {
		if ($(this).attr('value') == '') $(this).attr('value','Suchen');
	});
});
