new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 5,
  interval: 3000,
  width: 535,
  height: 25,
  theme: {
    shell: {
      background: 'transparent',
      color: '#000000'
    },
    tweets: {
      background: 'transparent',
      color: '#000000',
      links: '#00b0d8'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: false,
    avatars: false,
    behavior: 'default'
  }
}).render().setUser('ruud2561').start();


function cycleTweets()
{
    if ( $( '.twtr-tweet' ).length )
    {
        $( '.twtr-bd' ).show();
        $( '.twtr-reference-tweet' ).remove();
        $( '.twtr-tweets' ).cycle({ cleartypeNoBg: true });
    }
    else
    {
        setTimeout( cycleTweets, 200 );
    }
}
