var username = 'thefoo'; function Link(favico, link, title, sourceUrl, source) { this.favico = favico; this.link = link; this.title = title; this.sourceUrl = sourceUrl; this.source = source; } function Mashups() { links = new Array(); links[0] = new Link("/images/favicons/lastfm.gif", "http://www.last.fm/music/Five+for+Fighting/_/100+Years", "Five for Fighting ? 100 Years", "http://www.last.fm/user/MusicFoo", "MusicFoo's Recently Played Tracks"); links[1] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1193983349", "thefoo: seems like obama is stuttering and struggling with answering the questions on the fly", "http://twitter.com/thefoo", "Twitter / thefoo"); links[2] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1192462455", "thefoo: @DavidWard it's a sad state for MLB because everytime someone breaks a record now, it'll be \"did he take steroids or not\"", "http://twitter.com/thefoo", "Twitter / thefoo"); links[3] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1192399633", "thefoo: A Rod took steroids- surprise surprise.... doesn't everyone in baseball do it nowadays.MLB should put an * next to all modern day HR hitters", "http://twitter.com/thefoo", "Twitter / thefoo"); links[4] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1184276125", "thefoo: @loic you selling shoes now? a multi disciplined entrepreneur :-)", "http://twitter.com/thefoo", "Twitter / thefoo"); links[5] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1184186098", "thefoo: @technosailor darn ... i've been REALLY out of the loop! serves me right for staying away for so long", "http://twitter.com/thefoo", "Twitter / thefoo"); links[6] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1184178025", "thefoo: @technosailor are you leaving b5media... or is this for a new person you are going to hire for b5media?", "http://twitter.com/thefoo", "Twitter / thefoo"); links[7] = new Link("/images/favicons/twitter.gif", "http://twitter.com/thefoo/statuses/1184163801", "thefoo: i wonder what google has instore for Grandcentral. with how it treated jaiku, it doesn't look promising", "http://twitter.com/thefoo", "Twitter / thefoo"); return links; }