google.load("feeds", "1");
        function initialize() { 
		/*News*/
	        var feedControl = new google.feeds.FeedControl();
	        feedControl.addFeed("http://www.punknews.org/feeds/punknews.rdf", "Punk News");
			feedControl.addFeed("http://feeds.feedburner.com/DyingScene", "Dying Scene");
			feedControl.addFeed("http://thepunksite.com/news/feed/", "Punk Site");
			feedControl.addFeed("http://www.absolutepunk.net/rss", "Absolute Punk");
			feedControl.addFeed("http://www.truepunk.com/feed/", "True Punk");
			feedControl.addFeed("http://www.pastepunk.com/site/feed/", "Paste Punk");
			feedControl.addFeed("http://www.stereokiller.com/rss/news.cfm", "Stereo Killer");
			feedControl.addFeed("http://news.google.com/news?pz=1&cf=all&ned=us&hl=en&q=Punk+rock&output=rss", "Google");
			feedControl.setNumEntries(10);
			feedControl.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
			feedControl.draw(document.getElementById("feedControl"),
			{
				drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED
				});
		/*Punk Music Blogs
			var feedControl2 = new google.feeds.FeedControl();
	        feedControl2.addFeed("http://punknotprofit.blogspot.com/feeds/posts/default", "Punk Not Profit");
			feedControl2.addFeed("http://punkdownload.blogspot.com/feeds/posts/default", "Punk Download");
			feedControl2.addFeed("http://thepunksite.com/freemusic/feed/", "Punk Site");
			feedControl2.addFeed("http://www.upstarter.com/feed/", "Upstarter");
			feedControl2.addFeed("http://maximumrocknroll.com/feed/", "MaximumRnR");
			feedControl2.setNumEntries(5);
			feedControl2.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
			feedControl2.draw(document.getElementById("feedControl2"),
			{
				drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED
				});
	   /*Extra
	   		var feedControl3 = new google.feeds.FeedControl();
	        feedControl3.addFeed("http://thepunksite.com/freemusic/feed/", "Punk Site");
			feedControl3.setNumEntries(5);
			feedControl3.setLinkTarget(google.feeds.LINK_TARGET_BLANK);
			feedControl3.draw(document.getElementById("feedControl3"),
			{
				drawMode : google.feeds.FeedControl.DRAW_MODE_TABBED
				});*/
       }
	google.setOnLoadCallback(initialize);

