//Constructor for baseFeedEntry object which hold individual feeds entries from a baseFeed
function baseFeedEntry(p_title, p_url, p_photoUrl, p_description, p_image, p_location, p_interestedIn, p_interests,p_alias)
{
	this.title=p_title;
	this.url=p_url;
	this.photoUrl=p_photoUrl;
	this.description=p_description;
	this.image=p_image;
	this.location=p_location;
	this.interestedIn=p_interestedIn;
	this.interests=p_interests;
	this.alias=p_alias;
}

//Constructor for baseFeed object which holds details of individual feeds
function baseFeed (p_hostname, p_path, p_baseFeedParser, p_autostart, p_params, p_callbackComplete, p_subFeedParser, p_hasSubFeed, p_waitDelay, p_feedType, p_methodName)
{
	baseFeed.hostname=p_hostname;
	baseFeed.path=p_hostname;
	baseFeed.baseFeedParser=p_baseFeedParser;
	baseFeed.autostart=p_autostart;
	baseFeed.params=p_params;
	baseFeed.callbackComplete=p_callbackComplete;
	baseFeed.subFeedParser=p_subFeedParser;
	baseFeed.hasSubFeed=p_hasSubFeed;
	baseFeed.waitDelay=p_waitDelay;
	baseFeed.feedType=p_feedType;
	baseFeed.methodName=p_methodName;

}

//Create a multi-dimensional object from the spaces photoFeed
function photoAlbum(p_photoHtml)
{
    this.photoHtml=p_photoHtml;
}