$(document).ready(function(){
  $('#ticker .stories').getFeed('http://twitter.com/statuses/user_timeline/25864042.rss', {callback: 'goTicker', number: 3, showElements: 'title', noLink: true, textParser: 'cleanTweets', prepend: true});
  });
  
function cleanTweets(a){
  // This text parser removes the leading Surreysportpark: that you get from a Twitter RSS feed.
  // Amended to include unescape function to avoid problems with characters in tweets
  a = unescape(a);
  return(a.replace(/^Surreysportpark: /, ''));
  }