$(function(){

$.send = function( url, data, success, error){
  $.ajax({
    'url': url,
    'data': data,
    'dataType': 'json',
    'error': error,
    'success': success,
    'type': 'post'
  });
}
$.moneyFormat = function(){
  var num = $(this).val().replace(/[^\d]/ig,'');
  var rgx = /(\d+)(\d{3})/;
  while (rgx.test(num)) {
    num = num.replace(rgx, '$1' + ',' + '$2');
  }
  $(this).val(num);
}

});

