﻿  google.load('feeds', '1');

        function OnLoad() {
            var feeds = [
        {
            title: 'Twitter',
            url: 'http://twitter.com/statuses/user_timeline/21278375.rss'
        }
      ];

            var options = {
                stacked: true,
                horizontal: false,
                numResults: 5,
                title: "Hollywood News"
            };

            new GFdynamicFeedControl(feeds, 'content', options);
            document.getElementById('content').style.width = "240px";
            setTimeout("doreplace()", 1000);
        }

        google.setOnLoadCallback(OnLoad);
        function doreplace() {
            // alert("ff");
            document.getElementById('content').innerHTML =  document.getElementById('content').innerHTML.replace(/EnergizedSeller:/g, "")
            //alert(content1.innerHTML);             
        }