    google.load("feeds", "1");
 
    function initialize() {
        var feedControl = new google.feeds.FeedControl();
        feedControl.addFeed("http://www.amx.com/techcenter/rss.asp?What=Top%20Ten%20Applications/Firmware", "AMX - Top Ten Applications/Firmware.");
        feedControl.draw(document.getElementById("feedControl"));
    }
    function initialize1() {
        var feedControl1 = new google.feeds.FeedControl();
        feedControl1.addFeed("http://amx.com/techcenter/rss.asp?What=Manuals", "AMX - Manuals.");
        feedControl1.draw(document.getElementById("feedControl1"));
    }
google.setOnLoadCallback(initialize);
google.setOnLoadCallback(initialize1);

