$(function() {

	var target;
	var dataString;

	$('.formular_input').focus(function() {
		target = $(this).val();
		$(this).val('');
	});
	$('.formular_input').focusout(function() {
		if ($(this).val() == '') {
			$(this).val(target);
		};
	});
	
	$('#formular_comment').focus(function() {
		target = $(this).val();
		$(this).val('');
	});
	$('#formular_comment').focusout(function() {
		if ($(this).val() == '') {
			$(this).val(target);
		};
	});
	
});
