$(function() {
  show_hide_text('#contact_footer_name',    'name');
  show_hide_text('#contact_footer_email',   'email');
  show_hide_text('#contact_footer_message', 'message');
});

function show_hide_text(selector, text)
{
  $(selector).focus(function() {
    if($(this).val() == text)
    {
      $(this).val('');
    }
  });
  
  $(selector).blur(function() {
    if($(this).val() == '')
    {
      $(this).val(text);
    }
  });
  
  $('#contact_footer').submit(function() {
    if($(selector).val() == text)
    {
      $(selector).val('');
    }
  });
}
