google.load('feeds', '1');
function OnLoad() {
  var feeds = [
    {
      title: 'Word of the Day',
      url: 'http://wordsmith.org/awad/rss1.xml'
    },
    {
      title: 'Quote of the Day - StudyMinder.com',
      url: 'http://www.studyminder.com/cgi-bin/dailyquotation.xml'
    },
   ];
  
  var options = {
	numResults : 3,
	displayTime : 8000,
	fadeOutTime : 1500,
	scrollOnFadeOut : true,
        stacked : true,
        horizontal : false,
        title : "Word and Quote of the Day"
  };
    
  new GFdynamicFeedControl(feeds, 'wotdqotd', options);
  document.getElementById('wotdqotd').style.width = "99%";
}
google.setOnLoadCallback(OnLoad);
