$(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_cep").mask("99999-999");
    
    $(".c_fone").mask("(99) 9999-9999");

    $(".c_data").datepicker({
    	changeMonth: true,
    	changeYear: true,
        yearRange: '-100:+10',
        showButtonPanel: true,
		showOn: 'button',
		buttonImage: 'design/bt_data.gif',
		buttonImageOnly: true
    });

    $(".c_data_hora, .c_data_hora_minuto").datepicker({
    	changeMonth: true,
    	changeYear: true,
        yearRange: '-100:+10',
        showButtonPanel: true,
        duration: '',  
        showTime: true, 
        //constrainInput: false,  
        //stepMinutes: 1,  
        //stepHours: 1,  
        //altTimeField: '',  
        time24h: true  
    });

})

