var username = 'tommyvallier'; 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 photos", "http://www.flickr.com/photos/tommyvallier"); subLinks[1] = new WtfmoLink("My favorites", "http://www.flickr.com/photos/tommyvallier/favorites/"); subLinks[2] = new WtfmoLink("My contacts", "http://www.flickr.com/people/tommyvallier/contacts/"); wtfmo[0] = new WtfmoSite(new WtfmoLink("Flickr", "http://www.flickr.com/people/tommyvallier"), subLinks, "/images/favicons/flickr.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My friends", "http://twitter.com/tommyvallier/friends"); wtfmo[1] = new WtfmoSite(new WtfmoLink("twitter", "http://twitter.com/tommyvallier"), subLinks, "/images/favicons/twitter.gif"); return wtfmo; }