$(document).ready(function () {
    $(".FK_Teaser > h2").click(function () {
        $(".FK_Teaser > div").hide("slow");
        $(this).next().show("slow");
    });
});
