jQuery(document).ready(function($) {
    $.getScript('http://widgets.twimg.com/j/2/widget.js', function() {
		var oTweet = new TWTR.Widget({
		  version: 2,
		  type: 'profile',
		  rpp: 1,
		  id: 'TwitterBox',
		  interval: 6000,
		  width: 'auto',
		  height: 'auto',
		  theme: {
			shell: {
			  background: '#ffffff',
			  color: '#181818'
			},
			tweets: {
			  background: '#ffffff',
			  color: '#181818',
			  links: '#094890'
			}
		  },
		  features: {
			scrollbar: false,
			loop: false,
			live: false,
			hashtags: true,
			timestamp: false,
			avatars: false,
			behavior: 'all'
		  }
		}).render().setUser('ecologicarc').start();
    });
});


