$(document).ready(function () {
    // Notícias
    $("#noticias .noticia-aberta").hide();

    $("#noticias .botao").click(function () {
        $("#noticias .noticia-aberta").hide();
        $(this).parents().next(".noticia-aberta").show("fast");
        $(this).parents().next(".noticia-aberta").find("iframe").show();
    });

    $("#noticias .noticia-aberta .botao-fechar").click(function () {
        $(this).parents(".noticia-aberta").hide("fast");
        $(this).parents(".noticia-aberta").find("iframe").hide();
    });
});
