var username = 'joebennett'; 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("Diggs", "http://digg.com/users/gocats1/history/diggs"); subLinks[1] = new WtfmoLink("Submissions", "http://digg.com/users/gocats1/history/submissions"); subLinks[2] = new WtfmoLink("Comments", "http://digg.com/users/gocats1/history/comments"); subLinks[3] = new WtfmoLink("My friends", "http://digg.com/users/gocats1/friends/list"); subLinks[4] = new WtfmoLink("Favorites", "http://digg.com/users/gocats1/history/favorites"); subLinks[5] = new WtfmoLink("Shouts", "http://digg.com/users/gocats1/history/shouts"); wtfmo[0] = new WtfmoSite(new WtfmoLink("digg", "http://digg.com/users/gocats1"), subLinks, "/images/favicons/digg.gif"); subLinks = new Array(); wtfmo[1] = 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/bellsbakery"); subLinks[1] = new WtfmoLink("My favorites", "http://www.flickr.com/photos/bellsbakery/favorites/"); subLinks[2] = new WtfmoLink("My contacts", "http://www.flickr.com/people/bellsbakery/contacts/"); wtfmo[2] = new WtfmoSite(new WtfmoLink("Flickr", "http://www.flickr.com/people/bellsbakery"), subLinks, "/images/favicons/flickr.gif"); subLinks = new Array(); wtfmo[3] = new WtfmoSite(new WtfmoLink("LinkedIn", "http://www.linkedin.com/in/joerbennett"), subLinks, "/images/favicons/linkedin.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("Comments", "http://reddit.com/user/bellsbakery/comments"); subLinks[1] = new WtfmoLink("Submitted", "http://reddit.com/user/bellsbakery/submitted"); subLinks[2] = new WtfmoLink("Liked", "http://reddit.com/user/bellsbakery/liked"); subLinks[3] = new WtfmoLink("Disliked", "http://reddit.com/user/bellsbakery/disliked"); wtfmo[4] = new WtfmoSite(new WtfmoLink("Reddit", "http://reddit.com/user/bellsbakery"), subLinks, "/images/favicons/reddit.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My friends", "http://twitter.com/joerbennett/friends"); wtfmo[5] = new WtfmoSite(new WtfmoLink("twitter", "http://twitter.com/joerbennett"), subLinks, "/images/favicons/twitter.gif"); subLinks = new Array(); subLinks[0] = new WtfmoLink("My videos", "http://www.youtube.com/profile_videos?user=iamjoebennett"); subLinks[1] = new WtfmoLink("My favorites", "http://www.youtube.com/profile_favorites?user=iamjoebennett"); wtfmo[6] = new WtfmoSite(new WtfmoLink("YouTube", "http://www.youtube.com/profile?user=iamjoebennett"), subLinks, "/images/favicons/youtube.gif"); return wtfmo; }