function clojure_load() {
    $(".project-content").before('<a class="auto-drop" href="#">Show Details</a>');

    function drop_set() {
        $(this).next(".project-content").slideToggle();
        if ($(this).html() == "Show Details") {
            $(this).html("Hide Details");
        } else {
            $(this).html("Show Details");
        }

        $(this).blur();
        return false;
    }

    $(".project-content").hide();
    $(".auto-drop").click(drop_set);

    $(".email").after("gmail" + ".com");
    $(".email").before(" at j" + "ochu" + 0); // yeah, sad way to hide it - I know...
    $(".email").html("@");

}

$(document).ready(clojure_load);