Formatting is not preserved after slideDown

Formatting is not preserved after slideDown

Hi friends!

I am using JQuery to perform the slideDown function with one of the divs.

$(document).ready(function() {
                $("a:contains('Forgot')").click(function() {
                    $("#signuppanel").hide('slow', function() {
                        $("#signuppanel").slideDown('slow');
                    });
                });
            });





Once the signuppanel goes away and comes back, the formatting of the text in the panel is lost. The bold property of the font is lost. How come does it happen and how can it be avoided?

Thanks.