$(function(){
	
	mascaras();
	
});

function mascaras()
{
	$('.c_data').datepicker({
		inline: true,
		changeYear: true,
		changeMonth: true,
		
		showOn: "button",
		buttonText: "",
		buttonImageOnly: true,
		
		shortYearCutoff: '+50',
		showButtonPanel: true
	});

	$('.c_data_hora').datetimepicker({  
		inline: true,
		changeYear: true,
		changeMonth: true,
		showButtonPanel: true,
		
		showOn: "button",
		buttonText: "",
		buttonImageOnly: true,
		
		shortYearCutoff: '+50',
		duration: '',  
		showTime: true,  
		constrainInput: false,  
		stepMinutes: 1,  
		stepHours: 1,  
		altTimeField: '',  
		time24h: true  
	}); 	
	
	$(".c_data").unmask().mask("99/99/9999");
	$(".c_data_hora").unmask().mask("99/99/9999 99:99");
	$(".c_hora").unmask().mask("99:99");
	
	$(".c_fone").unmask().mask("(99) 9999-9999");
	$(".c_cpf").unmask().mask("999.999.999-99");
	$(".c_cnpj").unmask().mask("99.999.999/9999-99");
	$(".c_cep").unmask().mask("99999-999");
	
	$(".c_color").unmask().mask("#******");
	
	$('.c_parcelamento').numeric({allow:"+"});
	$('.c_parcelamento_completo').numeric({allow:"p,"});
	$('.c_num').numeric();
	
	$(".c_moeda").maskMoney({symbol:"R$",decimal:",",thousands:"."});
	
	$(".c_imagem").each(function(index) {
		
		id=$(this).attr("id");
		//$(this).parent().append("<a>Teste</a>");
		$(this).parent().append("<a class=\"button lyteframe2\" href=\"index.php?sis_franquias_imagens&box=sim&retorno=retorno_"+id+"\">Selecionar</a>");
		$(this).parent().append("<script type=\"text/javascript\">function retorno_"+id+"(imagem) { $('#"+id+"').val(imagem); } </script>");
		
	});
	
	$("input, textarea").focus(
		function()
		{
			// only select if the text has not changed
			if(this.value == this.defaultValue)
			{
				this.select();
			}
		}
	);	
}
