function LoadDynamicFeedControl() {
var feeds = [
{title: 'Maryams Blog',
 url: 'http://talenttohire.blogspot.com/feeds/posts/default?alt=rss'
}];

/*
var feeds = [
	{title: 'People',
	 url: 'http://rss.people.com/web/people/rss/topheadlines/index.xml'
	},
	{title: 'E-Online',
	 url: 'http://www.eonline.com/syndication/feeds/rssfeeds/topstories.xml'
	},
	{title: 'TMZ',
	 url: 'http://www.tmz.com/rss.xml'
	}];
*/

var options = {
stacked : false,
horizontal : true,
title : "",
	numResults : 10,
	 displayTime : 7000
}

new GFdynamicFeedControl(feeds, 'feed-control', options);
}
// Load the feeds API and set the onload callback.
google.load('feeds', '1');
google.setOnLoadCallback(LoadDynamicFeedControl);


