var Content = function($title)
{
	this.title = $title;
	this.bullets = [];
};

Content.prototype.addBullet = function($text)
{
	this.bullets.push($text);
};
