jQuery(document).ready(function()
{
    //Alle Titel-Überschriften-links
    jQuery('div.shortnews a.shortnews_title').click(function()
    {
        var link_id=jQuery(this).attr("id");
                        
        //Alle geoeffneten Container schliessen
        jQuery("div.shortnews_container.opened").slideUp("fast").fadeOut("fast").removeClass("opened").parent().removeClass("opened");
       
        //Wenn der aktuell geoeffnete Container nicht der geklickte ist: herunterfahren
        if (!(jQuery("div#text"+link_id).is(":visible")))
        {
            jQuery("div#text"+link_id).addClass("opened").slideDown("normal").parent().addClass("opened");
        }
           
        return false;
    });

    //erstes Element autoamtisch ausklappen
    jQuery('div.shortnews a.shortnews_title:first').click();
  
});
