function twtr_display() {
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 30,
  interval: 6000,
  width: 300,
  height: 200,
  theme: {
    shell: {
      background: '#e3e6e5',
      color: '#000803'
    },
    tweets: {
      background: '#000000',
      color: '#0CF',
      links: '#4aed05'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: false,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('zukutto').start();
}

function twtr_display2() {
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 30,
  interval: 6000,
  width: 500,
  height: 800,
  theme: {
    shell: {
      background: '#030',
      color: '#FFFFFF'
    },
    tweets: {
      background: '#FFFFFF',
      color: '#000000',
      links: '#00F'
    }
  },
  features: {
    scrollbar: true,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: false,
    avatars: false,
    behavior: 'all'
  }
}).render().setUser('zukutto').start();
}
