$('input[name=herstellen]').click(function()
{
	$('input[type="text"]').each(function()
	{
		$(this).val($(this).data('defaultText'));
	});
	
	$('textarea').each(function()
	{
		$(this).val($(this).data('defaultText'));
	});
	return false;
});
