var username = 'aratriel'; 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/aratriel"); subLinks[1] = new WtfmoLink("My subscriptions", "http://del.icio.us/subscriptions/aratriel"); wtfmo[0] = new WtfmoSite(new WtfmoLink("del.icio.us", "http://del.icio.us/aratriel"), subLinks, "/images/favicons/delicious.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My photos", "http://www.flickr.com/photos/11584685@N05"); subLinks[1] = new WtfmoLink("My favorites", "http://www.flickr.com/photos/11584685@N05/favorites/"); subLinks[2] = new WtfmoLink("My contacts", "http://www.flickr.com/people/11584685@N05/contacts/"); wtfmo[1] = new WtfmoSite(new WtfmoLink("Flickr", "http://www.flickr.com/people/11584685@N05"), subLinks, "/images/favicons/flickr.gif"); subLinks = new Array(); wtfmo[2] = new WtfmoSite(new WtfmoLink("Google Reader", "http://www.google.com/reader/shared/06109316860211213875"), subLinks, "/images/favicons/greader.gif"); subLinks = new Array(); wtfmo[3] = new WtfmoSite(new WtfmoLink("LinkedIn", "http://www.linkedin.com/in/marcogomiero"), subLinks, "/images/favicons/linkedin.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My shelf", "http://www.shelfari.com/o1517588939/shelf"); subLinks[1] = new WtfmoLink("My friends", "http://www.shelfari.com/o1517588939/friends"); subLinks[2] = new WtfmoLink("My groups", "http://www.shelfari.com/o1517588939/groups"); wtfmo[4] = new WtfmoSite(new WtfmoLink("Shelfari", "http://www.shelfari.com/o1517588939"), subLinks, "/images/favicons/shelfari.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My friends", "http://twitter.com/aratriel_trek/friends"); wtfmo[5] = new WtfmoSite(new WtfmoLink("twitter", "http://twitter.com/aratriel_trek"), subLinks, "/images/favicons/twitter.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My videos", "http://www.youtube.com/profile_videos?user=aratrielbiz"); subLinks[1] = new WtfmoLink("My favorites", "http://www.youtube.com/profile_favorites?user=aratrielbiz"); wtfmo[6] = new WtfmoSite(new WtfmoLink("YouTube", "http://www.youtube.com/profile?user=aratrielbiz"), subLinks, "/images/favicons/youtube.gif"); return wtfmo; }