$(document).ready(function() {

    $('a.detailInfobox_ExpandLink').click(function(event) {
        event.preventDefault();
        $('div.detailInfobox_ExtendedInfos').hide();
        $(this).closest('div.detailInfobox').find('div.detailInfobox_ExtendedInfos').show();
    });

});
