// JavaScript Document

/* Tweet js */

    $(document).ready(function(){
        $(".shopTweet").tweet({
            username: "seeyouinshop",
            join_text: "auto",
            avatar_size: 32,
            count: 1,
            auto_join_text_default: "we said,",
            auto_join_text_ed: "we",
            auto_join_text_ing: "we were",
            auto_join_text_reply: "we replied to",
            auto_join_text_url: "we were checking out",
            loading_text: "loading tweets..."
        });
		$(".dffTweet").tweet({
            username: "dollsforfriends",
            join_text: "auto",
            avatar_size: 32,
            count: 1,
            auto_join_text_default: "dolls for friends said,",
            auto_join_text_ed: "dolls for friends",
            auto_join_text_ing: "dolls for friends were",
            auto_join_text_reply: "dolls for friends replied to",
            auto_join_text_url: "dolls for friends were checking out",
            loading_text: "loading tweets..."
        });
		$(".erinTweet").tweet({
            username: "erinlynch",
            join_text: "auto",
            avatar_size: 32,
            count: 1,
            auto_join_text_default: "Erin said,",
            auto_join_text_ed: "Erin",
            auto_join_text_ing: "Erin was",
            auto_join_text_reply: "Erin replied to",
            auto_join_text_url: "Erin was checking out",
            loading_text: "loading tweets..."
        });
    });
