function Pagination(div, offset, limit, total) {
	
	this.paginate = function() {
		
	};
	
	var me = this;
	this.div = div;
	this.offset = offset;
	this.limit = limit;
	this.total = total;
}