// Script para manexo das noticias
$(document).ready(function(){
    //Cando se púlse unha noticia ...
    $('h1.title').click(function () {
        var tit = "#"+$(this).attr("id")+"-content";  // busco o texto correspondente
        if($(tit).is(":visible")){
            $(tit).fadeOut("fast"); // se é visible, ocúltoo
        }
        else{
            $(tit).fadeIn("fast");  // se non o é, móstroo
        }
    });
});



