    google.load('feeds', '1');

    function LoadDynamicFeedControl() {
      var feeds = [
	{title: '',
	 url: 'http://www.prime-tass.ru/rss/rushot_rss.xml'
	}];

      var feeds2 = [
	{title: 'Погода',
	 url: 'http://informer.gismeteo.ru/rss/27612.xml'
	},
	{title: 'Курсы валют',
	 url: 'http://www.memos.ru/dollar-rss.xml'
	},
	{title: 'Курсы валют',
	 url: 'http://www.memos.ru/euro-rss.xml'
	}];

      var options = {
        stacked : false,
        horizontal : true,
        title : " ",
        numResults : 33,
      }

      var options2 = {
        stacked : false,
        horizontal : true,
        title : "",
        numResults : 20,
      }

 var ia=3600000,Ya=60000,Xa=86400000,f={"n-minutes-ago":function(a){return (a+' minutes ago');},"n-hours-ago":function(a){return (a+' hours ago');},"one-hour-ago":('1 hour ago')};
 function i(a,c){try{a.appendChild(c)}catch(b){}return c}
 function p(a){var c=document.createElement("div");if(a){c.className=a}return c}
 function r(a,c){var b=document.createElement("div");if(a){b.innerHTML=a}if(c){b.className=c}return b}
 function z(a,c){var b=new Date;var d=b.getTime();var e=a.getTime();var g;if(d<e){return f["n-minutes-ago"](2)}var h=d-e;if(h<ia){var m=parseInt(h/Ya);if(m<=1){g=2}else{g=m}return f["n-minutes-ago"](g)}if(h<Xa){var q=parseInt(h/ia);if(q<=1){return f["one-hour-ago"]}else{g=q;return f["n-hours-ago"](g)}}return Za(a,c)}

 google.feeds.FeedControl.prototype.createHtml=function(a){
 var c=p("gf-result"); 
 var b=r(null,this.s); // Changed to bypass original function that  creates div, link all at same time. Now only creates div 
 var k=p("gf-title"); 
 var m=r(null,this.s); // Changed to bypass original function that  creates div, link all at same time. Now only creates div 
 b.appendChild(document.createTextNode(a.title)); // Added to append title to title div 
 i(c,b); 
 
 if(a.author){ 
  	b=r("By &nbsp;"+a.author,Qa); //You might need to change By, depending on your lang
  	i(c,b); 
	
  var d=""; 
  
  if(a.publishedDate){var d="-"} 
  		b=r(d,Ua); 
  		i(c,b)} 
		
 if(a.publishedDate){ 
 
  var e=new Date(a.publishedDate);
   
  b=r(z(e,google.feeds.ShortDatePattern),"gf-relativePublishedDate"); 
  i(c,b)} 
  
 b=r(a.contentSnippet,"gf-snippet"); 
 
 i(c,b); 
 i(c,b); 
 a.html=c} 

GFdynamicFeedControl.prototype.createListEntries_ = function(resultIndex, node) {
  var entries = this.results[resultIndex].feed.entries;
  this.clearNode_(node);
  for (var i = 0; i < entries.length; i++) {
    this.feedControl.createHtml(entries[i]);
    var className = 'gfg-listentry ';
    className += (i%2)?'gfg-listentry-even':'gfg-listentry-odd';
    var listEntry = this.createDiv_(className);
    var link = document.createTextNode(entries[i].title);
    listEntry.appendChild(link);
    if (this.options.pauseOnHover) {
      listEntry.onmouseover = this.bind_(this.listMouseOver_, resultIndex, i);
      listEntry.onmouseout = this.bind_(this.listMouseOut_, resultIndex, i);
    }
    entries[i].listEntry = listEntry;
    node.appendChild(listEntry);
  }
  if (node == this.nodes.list) {
    this.entries = entries;
  }
}


GFdynamicFeedControl.prototype.setTitle_ = function(resultFeed, opt_element) {
  var el = opt_element || this.nodes.title;
  this.clearNode_(el);
  var link = document.createElement('b');
;  link.target = google.feeds.LINK_TARGET_BLANK;
;  link.href = resultFeed.link;
;  link.className = '';
  link.innerHTML = resultFeed.title;
  el.appendChild(link);
}


      new GFdynamicFeedControl(feeds, 'feed-control', options);
      new GFdynamicFeedControl(feeds2, 'feed-control2', options2);
}


    google.setOnLoadCallback(LoadDynamicFeedControl);