// JavaScript Document
    google.load("feeds", "1");
	function OnLoadLinkBlog() {
//    function initialize() {
        var feedControl = new google.feeds.FeedControl();
		feedControl.setNumEntries(3) // number of feeds to display
        feedControl.addFeed("http://www.fmxservices.com/featured/feed", "FMX News and Notes");
  //      feedControl.addFeed("http://feeds.feedburner.com/Techcrunch", "TechCrunch");
        feedControl.draw(document.getElementById("feedControl"));
      }
      google.setOnLoadCallback(OnLoadLinkBlog);