// JavaScript Document
// Written by Jabran for www.local.com.pk
// Created on 15th August 2010

 function LoadDynamicFeedControl() {
      var feed = [
	{title: 'Latest News:',
	 url: 'http://news.search.yahoo.com/news/rss?p=pakistan+floods&ei=UTF-8&fl=0&x=wrt'
	},
	{title: 'Latest News:',
	 url: 'http://www.bbc.co.uk/urdu/pakistan/index.xml'
	},
	{title: 'Latest News:',
	 url: 'http://news.google.com/news?pz=1&cf=all&ned=uk&hl=en&q=pakistan+floods&cf=all&output=rss'
	}];
      var options = {
	  	numResults: 5,
        stacked : true,
        horizontal : true,
		title : ""
      }
	  var fg = new GFdynamicFeedControl(feed, "feed-Control", options);
  }
