    google.load('feeds', '1');

    function OnLoad() {
      var feeds = [
        {
          title: 'ranting about',
          url: 'http://chaos-23.com/ramblings/feed/'
        },
        {
          title: 'tweeting',
          url: 'https://twitter.com/statuses/user_timeline/793629.rss'
        },
        {
          title: 'listening to',
          url: 'http://ws.audioscrobbler.com/1.0/user/VodkaSatonic/recenttracks.rss'
        },
        {
	  title: 'playing',
	  url: 'http://raptr.com/Hex/rss'
        },
        {
          title: 'saving for later',
          url: 'http://feeds.delicious.com/v2/rss/Hexy'
        },
        {
          title: 'reading',
          url: 'http://www.goodreads.com/user/updates_rss/1077939?key=e46f4960552d43ee63621161ff9c278cc5ea2992'
        },
        {
          title: 'gonna be watching',
          url: 'http://myepisodes.com/rss.php?feed=tomorrow&showignored=0&onlyunacquired=0&uid=Hex&pwdmd5=0f3e7545ec16da35b63296ad6d54d496'
        },
        	{
		  title: 'eating',
		  url: 'http://hexy.foodfeed.us/rss'
        },
        {
	  title: 'weathering - ohlol',
	  url: 'http://feeds.bbc.co.uk/weather/feeds/rss/5day/world/321.xml'
	}

      ];

      var options = {
        stacked : true,
        horizontal : false,
        title : "what I'm..."
      };

      new GFdynamicFeedControl(feeds, 'content', options);
      document.getElementById('content').style.width = "458px";
    }

    google.setOnLoadCallback(OnLoad);
