<!--

//new item constructor
function newsItem(title,description,path) {
	this.title = title;
	this.description = description;
	this.path = path;
	return this;
}

var topStories = new Array()
//-->