/*
    *  How to use the Dynamic Feed Control, which has pretty UI already made for you!
    *  Don't forget to check out the options:
    *  http://www.google.com/uds/solutions/dynamicfeed/reference.html
    */
    
    google.load('feeds', '1');
    
    function OnLoad() {
      var feeds = [
        {
          title: 'Select Title To Read More:',
          url: 'http://maryfromdungloe.blogspot.com/feeds/posts/default?alt=rss'
        }
       
      ];
    
      var options = {
        stacked : true,
        horizontal : false,
        title : "Select Title To Read More:"
      };
    
      new GFdynamicFeedControl(feeds, 'blog', options);
      document.getElementById('blog').style.width = "230px";
    }
    
    google.setOnLoadCallback(OnLoad);