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("Places", "http://brightkite.com/people/tommyvallier/places"); subLinks[1] = new WtfmoLink("Friends", "http://brightkite.com/people/tommyvallier/friends"); wtfmo[0] = new WtfmoSite(new WtfmoLink("brightkite", "http://brightkite.com/people/tommyvallier"), subLinks, "/images/favicons/brightkite.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My network", "http://del.icio.us/network/tommyvallier"); subLinks[1] = new WtfmoLink("My subscriptions", "http://del.icio.us/subscriptions/tommyvallier"); wtfmo[1] = new WtfmoSite(new WtfmoLink("del.icio.us", "http://del.icio.us/tommyvallier"), subLinks, "/images/favicons/delicious.gif"); subLinks = new Array(); wtfmo[2] = new WtfmoSite(new WtfmoLink("Facebook", "http://www.facebook.com/profile.php?id=637470206"), subLinks, "/images/favicons/facebook.gif"); 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[3] = new WtfmoSite(new WtfmoLink("Flickr", "http://www.flickr.com/people/tommyvallier"), subLinks, "/images/favicons/flickr.gif"); subLinks = new Array(); wtfmo[4] = new WtfmoSite(new WtfmoLink("LinkedIn", "http://www.linkedin.com/in/tommyvallier"), subLinks, "/images/favicons/linkedin.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My friends", "http://twitter.com/tommyvallier/friends"); wtfmo[5] = new WtfmoSite(new WtfmoLink("twitter", "http://twitter.com/tommyvallier"), subLinks, "/images/favicons/twitter.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My videos", "http://www.youtube.com/profile_videos?user=tommyvallier"); subLinks[1] = new WtfmoLink("My favorites", "http://www.youtube.com/profile_favorites?user=tommyvallier"); wtfmo[6] = new WtfmoSite(new WtfmoLink("YouTube", "http://www.youtube.com/profile?user=tommyvallier"), subLinks, "/images/favicons/youtube.gif"); return wtfmo; }