
var value = '';

function toggleForm(){
   $('.call-edit-form').click(
   function(event){
      event.preventDefault();
      var className = $(this).attr('title');

      var $staticInfo = $('ul.'+className);
      var $formInfo = $('form.'+className);

      var display = $formInfo.css('display');

      if(display == 'none'){
        $staticInfo.hide();
        $formInfo.show();
      }

      if(display == 'block'){
        $formInfo.hide();
        $staticInfo.show();
      }
   });
}

function inputReseter() {

//  jQuery('input[type="text"]').focus(function(){
//     value = jQuery(this).val();
//     jQuery(this).val('');
//  });

//  jQuery('input[type="text"]').blur(function(){
//     if(jQuery(this).val() === ''){
//       jQuery(this).val(value);
//       value = '';
//     }else{
//       // user has ented input, do niothing
//     }
//  });

}




