
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 clear_field(el,orig_text) {
    if (el.value == orig_text)
        el.value = '';
}

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
//     }
//  });

}



Cufon.replace('.univers-condensed-bold',{
                                        'fontFamily' : 'Univers Condensed',
                                        'fontWeight' : '700'
                                        });
Cufon.replace('.univers-condensed',{
                                        'fontFamily' : 'Univers Condensed',
                                        'fontWeight' : '400'
                                        });
jQuery(document).ready(function(){
 //  inputReseter();
});
