﻿// must have the line <script type="text/javascript" src="http://widgets.twimg.com/j/2/widget.js"></script> above this in the referring file
function GetTwitterWidget()
{
  return new TWTR.Widget({
    version: 2,
    type: 'profile',
    rpp: 4,
    interval: 6000,
    width: 250,
    height: 300,
    theme: {
      shell: {
        background: '#c9deee',
        color: '#000000'
      },
      tweets: {
        background: '#ffffff',
        color: '#878787',
        links: '#2f668a'
      }
    },
    features: {
      scrollbar: false,
      loop: false,
      live: false,
      hashtags: true,
      timestamp: true,
      avatars: false,
      behavior: 'all'
    }
  })
}

