$(document).ready(function ()
{
/*@cc_on // IE; Umsetzung für andere Browser mit CS
    $("#lpContent>dl>dt").bind("mouseover.Plauderkasten_FAQ", function ()
    {
        this.style.textDecoration = "underline";
    });

    $("#lpContent>dl>dt").bind("mouseout.Plauderkasten_FAQ", function ()
    {
        this.style.textDecoration = "none";
    });
@*/

    $("#lpContent>dl>dt").bind("click.Plauderkasten_FAQ", function ()
    {
        $(this).next().slideToggle('fast');
    });
});
