$(document).ready(function(){
	$('#id-author-login').focus(function(){ if (this.value=='E-mail address') this.value = ''; })
	$('#id-author-login').blur(function(){ if (this.value=='') this.value = 'E-mail address'; })
	$('#id-author-password').focus(function(){ if (this.value=='************') this.value = ''; })
});
