jQuery(document).ready(function() {
  // call the function after it's been loaded

  jQuery('#email.login_field').focus(function()
  {
   //empty if it's default
   //alert('clicked in box');
   if(this.value == this.defaultValue){
    this.value = "";
   }
  });

  jQuery('#email.login_field').blur(function()
  {
   //reset the default if it's empty
   if(this.value == ""){
     this.value = this.defaultValue;
   }
  });

   jQuery('#password.login_field').focus(function()
  {
   //empty if it's default
   //alert('clicked in box');
   if(this.value == this.defaultValue){
    this.value = "";
   }
  });

  jQuery('#password.login_field').blur(function()
  {
   //reset the default if it's empty
   if(this.value == ""){
     this.value = this.defaultValue;
   }
  });


});
