function LoadTwitterWidget(twitterAcount){
	new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: 20,
	  interval: 8000,
	  title: '',
	  subject: '',
	  width: 218,
	  height: 149,
	  theme: {
	    shell: {
	      background: '#eeeeee',
	      color: '#ba8a37'
	    },
	    tweets: {
	      background: '#eeeeee',
	      color: '#ba8a37',
	      links: '#5e9732'
	    }
	  },
	  features: {
	    scrollbar: true,
	    loop: true,
	    live: true,
	    hashtags: true,
	    timestamp: true,
	    avatars: false,
	    behavior: 'default'
	  }
	}).render().setList(twitterAcount, '').start();
}
