$(document).ready(function() {
  $("#zpravodaj input[type=text]").focus(function() {
	  if (this.value == this.defaultValue) {
		  $(this).val('');
	  }
  });
  
  $("#zpravodaj input[type=text]").blur(function() {
	 if (this.value == '') {
		 $(this).val(this.defaultValue);
	 }
  });
});