function SliderData() {
	var entries;
	
	this.read = function(root) {
		entries = $(".entry").map(function(index) {
			return new Entry($(this));
		});		
	}
	
	this.getSize = function() { return entries.get().length; }
	this.getEntries = function() { return entries; } 
}

function Entry(element) {
	this.element = element;
	this.text = element.find(".text").first().html();
	this.images = element.find(".image");
	this.summary = element.find(".summary").first().html(); 
}
