[jQuery] strange slide Down Problem

[jQuery] strange slide Down Problem

Hi,
i built a very small Demosite using CodeIgniter and jQuery.
http://www.konzept-b.net/ci_2/index.php
As you can see there is a strange effect if you click on "Kommentar"...
on IE first it slides up, and then down.
on FF it jumps up and down.
could anyone help me to let that work smooth?
// JavaScript Document
$(document).ready(function(){
    $("a[@name=\'kommentar\']").click(function(e){
        e.preventDefault();
        var href=$(this).href();
        var me = this;
        $.get(href,function(r) {
            $(me).parent().next().html(r);
            $(me).parent().next().slideDown("slow");
        });
        
        $(this).html("hide comments");
        $(this).unbind("click");
        $(this).toggle(function(){
            //alert($(this).next().html());
            $(this).parent().next().slideUp("slow");
            $(this).html("show comments");
        },function(){
            $(this).parent().next("div").slideDown("slow");
            $(this).html("hide comments");
        });
    });
});
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/