function article(id,icon,game,content,title)
{
	this.icon = document.createElement("IMG");
	this.icon.src = icon;
	this.icon_url = icon;
	this.id = id;
	this.title = title;
	this.game = game;
	this.content = content;
}
