﻿jQuery(function ($) {
    $('input.autoNumber').autoNumeric({
        aSep: '.',
        aDec: ',',
        mDec: 0
    });

    $('input.autoNumber').css("text-align", "right");
    // please see the following pages:
    // (http://www.decorplanit.com/plugin/autoLoaderFunction.htm) information on the starting autoNumeric() and loading values
    // (http://www.decorplanit.com/plugin/specialCharacters.htm) information id's with special characters
});
