﻿    function LoadDynamicFeedControl()
    {
        var feeds = [
        {
            title: '&nbsp;Vest dana',
            url: 'http://www.voanews.com/serbian/customCF/RecentStoriesRSS.cfm?keyword=TopStories'
        }
        
        //,
        //{
          //  title: '&nbsp;Vijesti',
            //url: 'http://www.voanews.com/croatian/customCF/RecentStoriesRSS.cfm?keyword=TopStories'
        //},
        //{
          //  title: '&nbsp;Društvo',
            //url: 'http://www.voanews.com/serbian/customCF/RecentStoriesRSS.cfm?keyword=Social%20Issues'
        //},
        //{
          //  title: '&nbsp;Američki tisak',
            //url: 'http://www.voanews.com/croatian/customCF/RecentStoriesRSS.cfm?keyword=US%20Press'
        //},
        //{
          //  title: '&nbsp;Ekonomija i finansije',
            //url: 'http://www.voanews.com/serbian/customCF/RecentStoriesRSS.cfm?keyword=Economy%20and%20Finance'
        //},
        //{
          //  title: '&nbsp;Gospodarstvo i poslovni svijet',
            //url: 'http://www.voanews.com/croatian/customCF/RecentStoriesRSS.cfm?keyword=Economy%20and%20Finance'
        //}        
        ];
        var options =
        {
            stacked : true,
            horizontal : false,
            title : "Vijesti - Vesti",
            numResults : 8
        }

        new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
