$(document).ready(function(){
    $('.formatPriceBR').priceFormat({
        prefix: 'R$ ',
        centsSeparator: ',',
        thousandsSeparator: '.',
        limit: 13
    });
    $('.formatPriceBR').change(function() {
        if ($(this).val() == 'R$ 0,00')
            $(this).attr('value', '');
    }).focus(function() {
        if ($(this).val() == 'R$ 0,00')
            $(this).attr('value', '');
    }).blur(function() {
        if ($(this).val() == 'R$ 0,00')
            $(this).attr('value', '');
    });
    $('.formatDoubleBR').priceFormat({
        prefix: '',
        centsSeparator: ',',
        thousandsSeparator: '.',
        limit: 13
    });
    $('.formatDoubleBR').change(function() {
        if ($(this).val() == '0,00')
            $(this).attr('value', '');
    }).focus(function() {
        if ($(this).val() == '0,00')
            $(this).attr('value', '');
    }).blur(function() {
        if ($(this).val() == '0,00')
            $(this).attr('value', '');
    });
});
