jQuery(document).ready(function($) {
	var _firstname = 'Vorname';
	var _email = 'E-Mail';
  
  $('#newstool-firstname').focus(function() {
  	if ($('#newstool-firstname').val()==_firstname) {
  		$('#newstool-firstname').val('');
  	}
  });
  $('#newstool-firstname').blur(function() {
  	if ($('#newstool-firstname').val()=='') {
  		$('#newstool-firstname').val(_firstname);
  	}
  });
  
  $('#newstool-email').focus(function() {
  	if ($('#newstool-email').val()==_email) {
  		$('#newstool-email').val('');
  	}
  });
  $('#newstool-email').blur(function() {
  	if ($('#newstool-email').val()=='') {
  		$('#newstool-email').val(_email);
  	}
  });
});





