$(function() {
    if ($("#more input:first-chaild").val()) {
        $("span#anons p:last-child").append("   ");
        $("<a></a>")
            .addClass("dashed")
            .text($("#more input:first-chaild").val())
            .click(function() {
                $("#more").toggle("fast");
            })
            .appendTo("span#anons p:last-child");
    }
    if ($("a.highslide")) {
        $("a.highslide")
                .click(function() {
                    return hs.expand(this);
                })
                .each(function() {
                    if (!$(this).attr("href")) {
                        $(this).empty();
                    }
                });
    }

    $("ul li a.opened:last-child")
            .removeClass("opened");
    $("img.thmbnail").each(function() {
       if(!$(this).attr("src")) {
           $(this).remove();
       }
    });

    $()

});
