//Configuration file for LiveSpacesVision
//Holds details for each feed in an array of objects (baseFeedArray)
//Each object has the following properties

//		hostname			integer		An index value pointing to a white list of domains in the proxy (proxy.php or proxy_next.php)
//		path				string		The path of the base data feed			
//		baseFeedParser		string		The function that parses the feed
//		autostart			boolean		Does the feed start showing (true) or wait for user input (false)?
//		params				string		Query string parameters that are
//		callbackComplete	string		Callback function that is returned to after the feed request is sent
//		subFeedParser		string		Function that parses a sub feed.
//		hasSubFeed			boolean		Does the feed have a "subfeed"?
//		waitDelay			integer		Value in milliseconds before the next item is fetched
//		feedType			string		The type of the feed - either xml, json or soapxml. Note json is untested
//		methodName			string		Only used by a soap feed - is the methodname called.


//Used to hold the base feed objects
	var baseFeedArray=new Array();	

//Spaces profile feed
	baseFeedArray[0]=new baseFeed();
	baseFeedArray[0].hostname=0;
	baseFeedArray[0].path="changes.aspx";
	baseFeedArray[0].baseFeedParser="parseChangesRSS";
	baseFeedArray[0].autostart=true;
	baseFeedArray[0].params="";
	baseFeedArray[0].callbackComplete=false;
	baseFeedArray[0].subFeedParser="parseProfileRSS";
	baseFeedArray[0].hasSubFeed=true;
	baseFeedArray[0].waitDelay=3000;
	baseFeedArray[0].feedType="xml";
	baseFeedArray[0].methodName="";

//	Reuters public RSS feed for world news
//	http://feeds.reuters.com/Reuters/UKWorldNews?format=xml
	baseFeedArray[1]=new baseFeed();
	baseFeedArray[1].hostname=1;
	baseFeedArray[1].path="UKWorldNews?format=xml";
	baseFeedArray[1].baseFeedParser="parseReutersRSS";
	baseFeedArray[1].autostart=true;
	baseFeedArray[1].params="";
	baseFeedArray[1].callbackComplete=false;
	baseFeedArray[1].subFeedParser="";
	baseFeedArray[1].hasSubFeed=false;
	baseFeedArray[1].waitDelay=7000;
	baseFeedArray[1].feedType="xml";
	baseFeedArray[1].methodName="";

//Windows live search
	baseFeedArray[2]=new baseFeed();
	baseFeedArray[2].hostname=2;
	baseFeedArray[2].path="results.aspx";
	baseFeedArray[2].baseFeedParser="parseLiveSearch";
	baseFeedArray[2].autostart=false;
	baseFeedArray[2].params="";
	baseFeedArray[2].callbackComplete=false;
	baseFeedArray[2].subFeedParser="parseProfileRSS";
	baseFeedArray[2].hasSubFeed=true;
	baseFeedArray[2].waitDelay=5000;
	baseFeedArray[2].feedType="xml";
	baseFeedArray[2].methodName="";
	
	//Windows live test for soap
	baseFeedArray[3]=new baseFeed();
	baseFeedArray[3].hostname=3;
	baseFeedArray[3].path="webservices.asmx";
	baseFeedArray[3].baseFeedParser="parseLiveSearch";
	baseFeedArray[3].autostart=false;
	baseFeedArray[3].params="";
	baseFeedArray[3].callbackComplete=false;
	baseFeedArray[3].subFeedParser="parseProfileRSS";
	baseFeedArray[3].hasSubFeed=true;
	baseFeedArray[3].waitDelay=1000;
	baseFeedArray[3].feedType="soapxml";
	baseFeedArray[3].methodName="Search";