/*
==============================================================================
twitter
==============================================================================
*/

new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 10,
  interval: 6000,
  width: 'auto',
  height: 380,
  theme: {
    shell: {
      background: 'transparent',
      color: '#00815f'
    },
    tweets: {
      background: '#transparent',
      color: '#666666',
      links: '#e58b3a'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: true,
    hashtags: false,
    timestamp: true,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('13grandmothers').start();

