﻿// JScript File
google.load("feeds", "1");

function initialize() 
{
var feedControl = new google.feeds.FeedControl();
feedControl.addFeed("http://www.uie.com/brainsparks/feed/", "UIE");
feedControl.addFeed("http://feeds.feedburner.com/adaptivepath", "Adaptive Path");
feedControl.addFeed("http://feeds.feedburner.com/FunctioningForm", "Functioning Form");
feedControl.addFeed ("http://bokardo.com/feed/", "Bokardo.com");
feedControl.addFeed("http://feeds.feedburner.com/guuui ", "GUUUI");
feedControl.setLinkTarget (google.feeds.LINK_TARGET_BLANK);
feedControl.setNumEntries(2);
feedControl.draw(document.getElementById("feedControl"));

//podcasts
var podControl = new google.feeds.FeedControl();
podControl.addFeed("http://www.uie.com/brainsparks/tag/podcasts/feed/", "UIE Podcasts");
podControl.addFeed("http://uxpod.libsyn.com/rss", "UX Podcasts");
podControl.setLinkTarget (google.feeds.LINK_TARGET_BLANK);
podControl.setNumEntries(10);
podControl.draw(document.getElementById("podControl"),
{drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED});

}
google.setOnLoadCallback(initialize);