google.load("feeds", "1") //Load Google Ajax Feed API (version 1)

<!-- multiple feeds -->
function initialize() {
	var feedControl = new google.feeds.FeedControl();
        feedControl.addFeed("http://aocwatcher.wordpress.com/feed/rss/","AOC Watch");
//	feedControl.addFeed("http://stephenbaskerville.blogspot.com/feeds/posts/default?alt=rss", "Stephen Baskerville");
        feedControl.addFeed("http://rss.sciam.com/bering-in-mind-blog","Jesse Bering");
//	feedControl.addFeed("http://blogwonks.com/author/deepblue/rss", "Ray Blumhorst");
	feedControl.addFeed("http://battlinbog.blog-city.com/index.rss","Jerry Boggs");
	feedControl.addFeed("http://www.californiamenscenters.org/wordpress/?feed=rss2&cat=12", "Harry Crouch");
        feedControl.addFeed("http://www.falserapesociety.blogspot.com/atom.xml","The False Rape Society");
	feedControl.addFeed("http://feeds.feedburner.com/FamilyLawProfBlog", "Family Law Prof");
	feedControl.addFeed("http://www.mochadad.com/feed/","Frederick J. Goodall");
	feedControl.addFeed("http://whateveryparentshouldknowaboutcps.blogspot.com/feeds/posts/default?alt=rss", "Jessica Hepner");
	feedControl.addFeed("http://network.nationalpost.com/np/blogs/fullcomment/rss.aspx?Tags\x3dBarbara+Kay\x26AndTags\x3d1", "Barbara Kay");
	feedControl.addFeed("http://wadvpress.org/?feed=rss2","John Lukas");
        feedControl.addFeed("http://www.psychologytoday.com/blog/embedded/feed","Linda Mills");
        feedControl.addFeed("http://stevemoxon.blogspot.com/atom.xml","Steve Moxon");
        feedControl.addFeed("http://shrink4men.wordpress.com/feed/","Tara J. Palmatier");
	feedControl.addFeed("http://feeds.feedburner.com/makesmewannaholler","Eric Payne");
	feedControl.addFeed("http://blogs.psychologytoday.com/blog/about-fathers/feed", "Paul Raeburn");
	feedControl.addFeed("http://mkg4583.wordpress.com/feed", "Parental Rights");
	feedControl.addFeed("http://thenononsenseman.mensnewsdaily.com/feed/","Mark Rudov");
	feedControl.addFeed("http://feeds.feedburner.com/glennsacks", "Glenn Sacks");
	feedControl.addFeed("http://feeds.feedburner.com/NewPerspectivesOnPartnerAbuse", "Trudy Shuett");
        feedControl.addFeed("http://freerangekids.wordpress.com/feed/rss/","Lenore Skenazy");
//        feedControl.addFeed("http://rss.examiner.com/RSS-27585-San-Diego-Courts-Examiner.rss","Gregory Smart");        feedControl.addFeed("http://drhelen.blogspot.com/atom.xml","Helen Smith");
	feedControl.addFeed("http://faceuptofred.com/wordpress/?feed=rss2", "Fred Sottile");
	feedControl.addFeed("http://www.psychologytoday.com/blog/rethinking-men/feed","Anthony Synnott");
	feedControl.addFeed("http://cathyyoung.wordpress.com/category/feminism/feed/rss/", "Cathy Young");
	feedControl.draw(document.getElementById("feedControl"));
}
google.setOnLoadCallback(initialize);

