Behaviour.register({
'#Form_RegistrationForm_Email' : {
onfocus : function() {
         if(this.value == 'email address') this.value = '';
},
onblur : function() {
   if(this.value == '') this.value = 'email address';
}
}
}); 
