$(document).ready(function() {
    $(".win.top .hdr").toggle(
        function() {
            //$("+ div", this).css("display", "block");
            $("+ div", this).show("blind");
        },
        function() {
            //$("+ div", this).css("display", "none");
            $("+ div", this).hide("blind", "slow");
        });
    $(".win.top .hdr:first").click();
});

