jQuery(document).ready(function($) {
    // $() will work as an alias for jQuery() inside of this function
    
    $(document).ready(function(){
        $(".tweet").tweet({
            username: ["metanymweb", "metanympartner"],
            join_text: "auto",
            avatar_size: 40,
            count: 3,
            auto_join_text_default: "we said,", 
            auto_join_text_ed: "we",
            auto_join_text_ing: "",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
        });
    });

});
