$(function(){
	//Máscara dos campos
	$('#cep').mask("99999-999");
	$('#telddd').mask("99");
	$('#tel').mask("9999-9999");
	$('#faxddd').mask("99");
	$('#fax').mask("9999-9999");
	$('#cnpj').mask("99.999.999/9999-99");
	
	$('#estado').change(function(){
		$('#cidade').html('<option>carregando...</option>');
			$.post('ajax_control.asp',
				{uf: $(this).val(), act: "cidade", _postKey: $('#_postKey').val()},
				function(text){
					$('#cidade').removeAttr('disabled');
					$('#cidade').html(text);
				}
			);
	});
	$("a[rel^='prettyPhoto']").prettyPhoto();
});