﻿$(document).ready(function() {
    $('#nav li').hover(function() {
        $(this).children('ul').show();
        $(this).children('ul').dequeue();
    }, function() {
        $(this).children('ul').hide();
        $(this).children('ul').dequeue();
    });

    $("#ctl00_TextBoxAssineNewsletter").Watermark("Insira seu e-mail", "#FFF");
});

function mascara(o, f) {
    v_obj = o
    v_fun = f
    setTimeout("execmascara()", 1)
}

function execmascara() {
    v_obj.value = v_fun(v_obj.value)
}

function Mfone(v) {
    v = v.replace(/\D/g, "")
    v = v.replace(/^(\d\d)(\d)/g, "($1) $2")
    v = v.replace(/(\d{4})(\d)/, "$1-$2")
    return v
}

function Mcep(v) {
    v = v.replace(/\D/g, "")
    v = v.replace(/(\d{5})(\d)/, "$1-$2")
    return v
}
