//Author: Garrett Pennington

document.write('<script src="http://widgets.twimg.com/j/2/widget.js"></script>');
function addTwidget(){
	new TWTR.Widget({
	  version: 2,
	  type: 'profile',
	  rpp: twidgetOptions.numItems,
	  interval: 10000,
	  width: 'auto',
	  height: 300,
	  theme: {
		shell: {
		  background: '#eeeeee',
		  color: '#333333'
		},
		tweets: {
		  background: '#ffffff',
		  color: '#333333',
		  links: '#78a7d4'
		}
	  },
	  features: {
		scrollbar: false,
		loop: false,
		live: false,
		hashtags: true,
		timestamp: twidgetOptions.timeStamp,
		avatars: false,
		behavior: 'all'
	  }
	}).render().setUser(twidgetOptions.accountName).start();
}
