jQuery(document).ready(function() {

/* MF Clear the fields when clicked in and store their original value, in case left balank in the future */

  jQuery('#call_back_form input').each(function()
  {
    var originalValue = "";
    var originalValueSet = false;
    
    /*

    $(this).focus(function(){
      if(originalValueSet){
        this.value = "" ;
        return;
      }else{
        originalValue = this.value;
        originalValueSet = true;
        this.value = "" ;
      }
    });

    $(this).blur(function(){
      if(this.value == ''){
        $(this).val(originalValue);
      }
    });
    
    */
  });
});
