// sitemap object definition
var sitemap = function (title, url) {
	this._title = title;
	this._url = url;
}

sitemap.prototype.title = function() {
	return this._title;
}

sitemap.prototype.url = function() {
	return this._url;
}
// end sitemap object definition
