var username = 'erich13'; 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/delicious.gif", "https://addons.mozilla.org/en-US/firefox/addon/8116", "UberNote Toolbar :: Add-ons for Firefox", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[1] = new Link("/images/favicons/delicious.gif", "http://code.google.com/appengine/docs/python/gettingstarted/introduction.html", "Introduction - Google App Engine - Google Code", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[2] = new Link("/images/favicons/delicious.gif", "http://www.python.org/dev/peps/pep-0008/", "PEP 8 -- Style Guide for Python Code", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[3] = new Link("/images/favicons/delicious.gif", "http://www.there.com/", "There - The online virtual world that is your everyday hangout", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[4] = new Link("/images/favicons/delicious.gif", "http://groups.google.com/group/gmail-labs-help-gadgets/topics", "Discussions - gmail-labs-help-gadgets | Google Groups", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[5] = new Link("/images/favicons/delicious.gif", "http://erich13-todos.jottit.com/", "ToDos: Home", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[6] = new Link("/images/favicons/delicious.gif", "http://onehome.jottit.com/", "One Home: Home", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); links[7] = new Link("/images/favicons/delicious.gif", "http://iamjob.jottit.com/", "Eric Herberholz is looking for a new job: Home", "http://delicious.com/eric.k.herberholz", "Delicious/eric.k.herberholz"); return links; }