$(function(){

	$(".c_moeda").maskMoney({symbol:"R$",decimal:",",thousands:"."})

    $(".c_data").mask("99/99/9999");
    $(".c_data_hora").mask("99/99/9999 99:99:99");
    
    $(".c_data_hora_minuto").mask("99/99/9999 99:99");
    
    $(".c_cpf").mask("999.999.999-99");
    
    $(".c_fone").mask("(99) 9999-9999");

    $(".c_data").datepicker({
		showOn: 'button',
		buttonImage: 'imagens/icones/1day.gif',
		buttonImageOnly: true,
        changeMonth: true,
    	changeYear: true,
        showButtonPanel: true,
        yearRange: '1900:2050'
    });

    $(".c_data_hora, .c_data_hora_minuto").datepicker({
    	changeMonth: true,
    	changeYear: true,
        showButtonPanel: true,
        duration: '',  
        showTime: true,
        yearRange: '1900:2050',
        //constrainInput: false,  
        //stepMinutes: 1,  
        //stepHours: 1,  
        //altTimeField: '',  
        time24h: true  
    });

})

