$(function(){

	$('#example1').priceFormat();
	
	$('#example2').priceFormat({
		prefix: 'R$ ',
		centsSeparator: ',',
		thousandsSeparator: '.'
	});
	
	$('#example3').priceFormat({
		prefix: '',
		thousandsSeparator: ''
	});
	
	$('#example4').priceFormat({
		limit: 5,
		centsLimit: 3
	});

});