// JavaScript Document

// THIS SCRIPT CONTROLS THE DISPLAY OF THE TWITTER FEED. REQUIRES js/jquery.tweet.js and js/jquery.js (any version after 1.3)
$(function(){
	
      $(".tweet").tweet({
        //join_text: "auto",
        join_text:null,
		username: "RedKiva",
        avatar_size: 48,
        count: 1,
        // Next several parameters were changed for Saloon
        auto_join_text_default:null,
		auto_join_text_ed: null,
        auto_join_text_ing: null,
        auto_join_text_reply: null,
        auto_join_text_url: null,
		auto_join_text_default: null,
		/*
		auto_join_text_default: "we said,",
		auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied",
        auto_join_text_url: "we were checking out",
		*/
		
        loading_text: "Loading Twitter..."
      });
    });
