$(function () {
    $('.select-busca').selectmenu();
    $('.select-filtro-receita').selectmenu();
    $('.select-tempo-receita').selectmenu();
    $('select#assunto').selectmenu();
    $('#sexo').selectmenu();
    $('select#produto-utilizado').selectmenu();
    $('#estado-civil').selectmenu();
    $('#escolaridade').selectmenu();
    $('#cozinha-renda').selectmenu();
    $('#cozinha-dias').selectmenu();
    $('#filhos').selectmenu();
    $('#estadoCivil').selectmenu();

    $('#estado').change(function () {
    	var value = $(this).find('option[value=' + $(this).val() + ']').attr('class').replace(/[^0-9]/g, '');
    	var loc = window.location;
    	
        var href = loc.protocol + '//' + loc.host + baseUrl+'/view/contato/cidade.asp?estado=' + value;
        $.ajax({
            url: href,
            beforeSend: function () {
                $('#cidade').html('<option value="">Carregando...</option>');
            },
            success: function (data) {
                $('#cidade').html(data);
                $('#cidade').selectmenu();
            }
        });
    }).selectmenu();

    $('#cidade').selectmenu();
    $('#ocupacao').selectmenu();

    if ($('#telefone').length)
        $('#telefone').mask("9999-9999");
    if ($('#celular').length)
        $('#celular').mask("9999-9999");
    if ($('#cpf').length)
        $('#cpf').mask("999.999.999-99");
    if ($('#ddd-cel').length)
        $('#ddd-cel').mask("99");
    if ($('#ddd').length)
        $('#ddd').mask("99");
    if ($('#id').length)
        $('#id').mask("99");
    if ($('#dia').length)
        $("#dia").mask("99");
    if ($('#ano').length)
        $('#ano').mask("9999");
    if ($('#mes').length)
        $('#mes').mask("99");
    if ($('#cep-dig1').length)
        $('#cep-dig1').mask("99999");
    if ($('#cep-dig2').length)
        $('#cep-dig2').mask("999");
});
