jQuery(function($) { // example of adding class prior to initiating autoNumeric
	$('selector').addClass('auto'); // the input field will inherited the options
	$('input.auto').autoNumeric({
		mNum: 9,
		mDec: 0,
		 aSign: '£'
	});
})
jQuery(function($) { // example of adding class prior to initiating autoNumeric
	$('selector').addClass('VehicleMileage'); // the input field will inherited the options
	$('input.VehicleMileage').autoNumeric({
		mNum: 9,
		mDec: 0
		
	});
})


