$(document).ready(function() {

    $(".transparencia").pngfix();
    $("#menu UL LI:last").css("border-bottom", "none");
    $("#coluna2 DL DD:last .separador").css("display", "none");
    $("#newsletter #email").example("seu e-mail");
    $("#newsletter .invalidInput").example("seu e-mail");

    $("#open").click(function(){
        $("#contatos").show("slow");
    });
    $("#contatos #close").click(function(){
        $("#contatos").hide("slow");
    });

    $(".abra").each(function(){
        $(this).click(function(){
            $(this).parent().children("p").slideToggle("slow");
        });
    });

    $("#promocao-anuncio2 DIV IMG").click(function(){
        $("#promocao, #promocao-anuncio").fadeOut();
    });

});
