// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

$(document).ready(function() {
  if (($('input.prompt_prefill').val() == '' ) || ($('input.prompt_prefill').val() == 'enter your e-mail address')) {
    $('input.prompt_prefill').addClass('instructions').val('enter your e-mail address');
  }

  $("input.prompt_prefill").focus(function () {
    if ($(this).val() == 'enter your e-mail address') {
      $(this).removeClass('instructions').val('');
    }
  });

  $("input.prompt_prefill").blur(function () {
    if ($(this).val() == '') {
      $(this).addClass('instructions').val('enter your e-mail address');
    }
  });
});