var feeds = [
       {title:'Universidad Kennedy',
        url:'http://rss.universia.net/AR/noticias_universidad_UK_AR'},
		{title:'Facultad de Agronomía de la UBA',
        url:'http://rss.universia.net/AR/noticias_universidad_UBA_AR'},
		{title:'Universidad Nacional de Rosario',
        url:'http://rss.universia.net/AR/noticias_universidad_UNR_AR'},
		{title:'Universidad Nacional de La Plata',
        url:'http://rss.universia.net/AR/noticias_universidad_UNLP_AR'}]
		;

google.load("feeds", "1");

function loadFeedControl() {
var options = {
    numResults : 3,
    linkTarget : google.feeds.LINK_TARGET_BLANK,
    /*pauseOnHover : false,*/
    /*stacked : true*/
    fadeOutTime : 500
  }
	var fg = new GFdynamicFeedControl(feeds, "feedControl", options);
}

/*    function initialize() {

      var feed = new google.feeds.Feed(feeds[i].title);
      feed.load(function(result) {
        if (!result.error) {
          var container = document.getElementById("feed");
          for (var i = 0; i < result.feed.entries.length; i++) {
            var entry = result.feed.entries[i];
            var div = document.createElement("div");
            div.appendChild(document.createTextNode(entry.title));
            container.appendChild(div);
          }
        }
      });
    }*/
google.setOnLoadCallback(loadFeedControl);
