var username = 'meganmcc'; function WtfmoLink(name, url) { this.site_name = name; this.site_url = url; } function WtfmoSite(wtfmoLink, subLinks, siteImg) { this.wtfmo = wtfmoLink; this.sub_link = subLinks; this.avatar = siteImg; } function WtfmoSites() { wtfmo = new Array(); subLinks = new Array(); subLinks[0] = new WtfmoLink("My network", "http://del.icio.us/network/The_Tooth_Fairy"); subLinks[1] = new WtfmoLink("My subscriptions", "http://del.icio.us/subscriptions/The_Tooth_Fairy"); wtfmo[0] = new WtfmoSite(new WtfmoLink("del.icio.us", "http://del.icio.us/The_Tooth_Fairy"), subLinks, "/images/favicons/delicious.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My friends", "http://twitter.com/toothfairycloud/friends"); wtfmo[1] = new WtfmoSite(new WtfmoLink("twitter", "http://twitter.com/toothfairycloud"), subLinks, "/images/favicons/twitter.gif"); return wtfmo; }