﻿    function LoadDynamicFeedControl()
    {
        var feeds = [
        {
            title: '&nbsp;Aktuelles',
            url: 'http://p.yimg.com/bw/rss/breaking-news.xml'
        },
        {
            title: '&nbsp;Inland',
            url: 'http://p.yimg.com/bw/rss/politik-inland.xml'
        },
        {
            title: '&nbsp;Wirtschaft',
            url: 'http://p.yimg.com/bw/rss/wirtschaft.xml'
        },
        {
            title: '&nbsp;Sport',
            url: 'http://p.yimg.com/bw/rss/sport.xml'
        },
        {
            title: '&nbsp;Technik',
            url: 'http://p.yimg.com/bw/rss/technik.xml'
        },
        {
            title: '&nbsp;Wissenschaft',
            url: 'http://rss.news.yahoo.com/rss/oddlyenough'
        }        
        ];
        var options =
        {
            stacked : true,
            horizontal : false,
            title : "Nachrichten",
            numResults : 8
        }

        new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
