$(document).ready(function() {
	$("#suchfeld").attr("value", "Finden");

	var text = "Finden";

	$("#suchfeld").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#suchfeld").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});

$(document).ready(function() {
	$("#lsuchbegriff").attr("value", "Drucksachennummer oder Titel");

	var text = "Drucksachennummer oder Titel";

	$("#lsuchbegriff").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#lsuchbegriff").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});






