var username = 'fransglobal'; 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(); wtfmo[0] = new WtfmoSite(new WtfmoLink("Facebook", "http://www.facebook.com/profile.php?id=USER_NAME"), subLinks, "/images/favicons/facebook.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My photos", "http://www.flickr.com/photos/fransglobal"); subLinks[1] = new WtfmoLink("My favorites", "http://www.flickr.com/photos/fransglobal/favorites/"); subLinks[2] = new WtfmoLink("My contacts", "http://www.flickr.com/people/fransglobal/contacts/"); wtfmo[1] = new WtfmoSite(new WtfmoLink("Flickr", "http://www.flickr.com/people/fransglobal"), subLinks, "/images/favicons/flickr.gif"); subLinks = new Array(); wtfmo[2] = new WtfmoSite(new WtfmoLink("My Travbuddy", "http://www.travbuddy.com/fransglobal"), subLinks, "/images/favicons/default.gif"); subLinks = new Array(); wtfmo[3] = new WtfmoSite(new WtfmoLink("Myblog", "http://fransglobal.blog.lemonde.fr/"), subLinks, "/images/favicons/default.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My videos", "http://www.youtube.com/profile_videos?user=fransglobal"); subLinks[1] = new WtfmoLink("My favorites", "http://www.youtube.com/profile_favorites?user=fransglobal"); wtfmo[4] = new WtfmoSite(new WtfmoLink("YouTube", "http://www.youtube.com/profile?user=fransglobal"), subLinks, "/images/favicons/youtube.gif"); return wtfmo; }