﻿function cadastroEmail() {
    var _email = $("#txtCadastre").val();
    $("#txtCadastre").val("aguarde...");
    $.ajax({ url: "../Controle/CadastrarEmail.ashx?t=" + new Date().getMilliseconds(),
        dataType: "json",
        type: "POST",
        data: { email: _email },
        cache: false,
        success: function (r) {
            if (r.status == "1") {
                alert(r.msg);
                $("#txtCadastre").val("").css("background-position", "0px 0px");

            }
            else {
                $("#txtCadastre").val(_email);
                alert(r.msg);
            }
        }
    });
}
$(function () {

    $(".menu ul li:not(.selecionado)").hover(function () { $(this).bind("click", function () { window.location.href = $(this).find("a").attr("href"); }); $(this).addClass("selecionado").css("border-left", "none"); }, function () { $(this).removeClass("selecionado"); });
    $(".txtCadastre").focus(function () { $(this).css("background-position", "0px -33px"); }).blur(function () { if ($(this).val() == "") $(this).css("background-position", "0px 0px"); });
    $("#txt").bind("click", cadastroEmail);
});
