
 
// Google AJAX Search and Feed Wizard 
// http://code.google.com/apis/ajaxsearch/wizards.html 



function LoadDynamicFeedControl() {
      var feeds = [
	{title: '2creativo Novedades',
	 url: 'http://2creativo.net/new/feed/'
	},
	{title: 'Blog piscolabis',
	 url: 'http://feeds2.feedburner.com/piscolabis'
//	},
//	{title: 'Blog 2linka2',
//	 url: 'http://2creativo.net/2blog/rss.php'
	}];
      var options = {
        stacked : false,
        horizontal : true,
        title : ""
      }

      new GFdynamicFeedControl(feeds, 'feed-control', options);
    }
    // Load the feeds API and set the onload callback.
    google.load('feeds', '1');
    google.setOnLoadCallback(LoadDynamicFeedControl);
