// Twitter Script
		new TWTR.Widget({
		  version: 2,
		  type: 'profile',
		  rpp: 10,
		  interval: 6000,
		  width: 280,
		  height: 350,
		  theme: {
		    shell: {
		      background: '#333333',
		      color: '#0088ff'
		    },
		    tweets: {
		      background: '#000000',
		      color: '#0088ff',
		      links: '#0000ff'
		    }
		  },
		  features: {
		    scrollbar: true,
		    loop: false,
		    live: false,
		    hashtags: true,
		    timestamp: true,
		    avatars: true,
		    behavior: 'all'
		  }
		}).render().setUser('DrgnMec01').start();
