// JavaScript Document
// Twitter Configurator

new TWTR.Widget({
              version: 2,
              type: 'profile',
              rpp: 2,
              interval: 6500,
              width: 200,
              height: 180,
              theme: {
                shell: {
                  background: '#9cb31b',
                  color: '#ffffff'
                },
                tweets: {
                  background: '#ffffff',
                  color: '#1f0218',
                  links: '#85c9dc'
                }
              },
              features: {
                scrollbar: false,
                loop: true,
                live: true,
                hashtags: true,
                timestamp: true,
                avatars: false,
                behavior: 'default'
              }
            }).render().setUser('YourGetawayGuru').start();
