// JavaScript Document

// document ready
$(function() {

	
	initTwitter();
	
	
});



function initTwitter() {

	



$(function(){
      $("#latest_tweet_2, #latest_tweet_3 ").tweet({
        count: 2,
		//fetch: 10,
		
        username: "Taste_Festivals",
        loading_text: "loading tweets...",
        refresh_interval: 15,
		filter: function(t){ return ! /RT/.test(t["tweet_raw_text"]); }


      });
    });





/*	$(function(){
      $("#latest_tweet_2").tweet({
        count: 2,
		fetch: 10,
        query: "tasteoflondon",
        loading_text: "loading tweets...",
        refresh_interval: 15,
		filter: function(t){ return ! /RT/.test(t["tweet_raw_text"]); }


      });
    });





  	$(function(){
      $("#latest_tweet_3").tweet({

		count: 3,
        fetch: 20,

        query: "tasteoflondon",
		filter: function(t){ return ! /RT/.test(t["tweet_raw_text"]); },
        loading_text: "loading tweets...",
        refresh_interval: 15
		

      });
    });*/
	
	
}
 
