$('#fc-form input.form-text').focus(function(){
  if($(this).attr('value')=='Your name' || $(this).attr('value')=='Your email' || $(this).attr('value')=='Your website'){
    $(this).attr('value','');
  }
});;

