function startNews() {
   // Set the size of the results of these queries to small.
   var options = {
     "queryList" : [
       {
         "title" : "Nyheter",
         "q" : "falköping",
         "rsz" : "large",
		 "scoring" : "d"
       }
     ]
   }
   var content = document.getElementById('news');
   var newsShow = new google.elements.NewsShow(content, options);
   
 google.load("feeds", "1", {callback:"startBlogs"});
}

function startBlogs() {
    var feedControl  = new google.feeds.FeedControl();
    feedControl.addFeed("http://blogsearch.google.se/blogsearch_feeds?hl=sv&q=falk%C3%B6ping&lr=&scoring=d&as_drrb=q&as_qdr=a&ie=utf-8&num=10&output=atom", "Bloggat om Falköping");
    feedControl.addFeed("http://platsbanken.arbetsformedlingen.se/Rss/RssFeed.aspx?q=s%28ld%28199%29l%2814%29k%281499%29%29a%2820%29sp%2865%29sr%281%29c%282873B0D%29", "Lediga jobb");
    feedControl.draw(document.getElementById("blog"), { drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED });

    var feedControl2  = new google.feeds.FeedControl();
    feedControl2.addFeed("http://feedity.com/rss.aspx/falkoping-se/UldTW1VR", "Nyheter från kommunen");
    feedControl2.draw(document.getElementById("kommun"));
    
    var feedControl3  = new google.feeds.FeedControl();
    feedControl3.addFeed("http://search.twitter.com/search.atom?q=falk%C3%B6ping", "Twittrat om Falköping");
    feedControl3.addFeed("http://twitter.com/statuses/user_timeline/45519107.rss", "Falköping Nu");
    feedControl3.draw(document.getElementById("twitter"), { drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED });
}
