$(document).ready(function() {
	$("#s").focus(function() {
		if ($(this).val()=="suchen...")
			$(this).val("");
	});
	$("#s").blur(function() {
		if ($(this).val()=="")
			$(this).val("suchen...");
	});
	$("#s").click(function() { $(this).trigger("focus"); });
	
	$(".toggleme").click(function() {
		var id = $(this).attr("title");
		$("#" + id).toggle();
		$("#" + id + "arrow").toggle();
		$("#" + id + "arrow2").toggle();
	});
});