// twitter timeline
/* new TWTR.Widget({
  version: 2,
  type: '',
  rpp: 3,
  interval: 3000,
  width: 300,
  height: 160,
  theme: {
    shell: {
      background: '#461f10',
      color: '#ffffff'
    },
    tweets: {
      background: '#321203',
      color: '#ffffff',
      links: '#fe8c7b'
    }
  },
  features: {
    scrollbar: true,
    loop: true,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: true,
    behavior: 'default'
  }
}).render().setUser('e_ca_jp').start();
 */



//
new TWTR.Widget({
  version: 2,
  type: 'search',
  search: 'e_ca_jp',
  interval: 6000,
  title: '',
  subject: 'e-caの最近のつぶやき',
  width: 300,
  height: 152,
  theme: {
    shell: {
      background: '#461f10',
      color: '#ffffff'
    },
    tweets: {
      background: '#321203',
      color: '#ffffff',
      links: '#fe8c7b'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: true,
    behavior: 'default'
  }
}).render().start();