$(document).ready(function(){
  $('#contact-form input[type="text"]').focus(function(){
    if ($(this).val() == 'your ' + $(this).attr('name')) 
      $(this).val('');
  });
  $('#contact-form input[type="text"]').blur(function(){
    if ($(this).val() == '') 
      $(this).val('your ' + $(this).attr('name'));
  });
  
  $('#contact-form textarea').focus(function(){
    if ($(this).html() == 'your ' + $(this).attr('name')) 
      $(this).html('');
  });
  $('#contact-form textarea').blur(function(){
    if ($(this).html() == '') 
      $(this).html('your ' + $(this).attr('name'));
  });
  
});

