google.load('feeds', '1');

function OnLoad() {
  var feeds = [
	{
	  title: 'Latest Posts',
	  url: 'http://blog.leathersofa.co.uk/atom.xml'
	}
  ];

  var options = {
	stacked : true,
	horizontal : false,
	title : "Leather Sofa News",
	numResults : 5,
	displayTime : 10000,
	linkTarget : google.feeds.LINK_TARGET_SELF
  };

  new GFdynamicFeedControl(feeds, 'feed', options);
  document.getElementById('feed').style.width = "222px";
}

google.setOnLoadCallback(OnLoad);
