function prepSignupBox() {
   var box = $('#id_email');
   var label = "Email Address";
   box.val(label);
   
   box.focus(function() {
      
      if ($(this).val() == label)
         $(this).val("");
   });
}

$(document).ready(function() {
   prepSignupBox();
});