var Article = function (title, description, content, page, area) {
    this.title = title;
    this.description = description;
    this.content = content;
	this.page = page;
	this.area = area; 
}

var Issue = function (data, name, subIssues){
	this.data = data;
	this.name = name;
	this.subIssues = subIssues;
}

var Category = function (cover, URL, title) {
    this.cover = cover;
    this.URL = URL;
    this.title = title;
}

var Area = function (x, y, w, h){
	this.x = x;
	this.y = y;
	this.width = w;
	this.height = h;
}


