function ButtonLabel(text)
{
	this.label = text;
	this.name = text.charAt(0).toLowerCase();

	for(var i = 1; i < text.length; i++)
	{
		if(text.charAt(i) != ' ')
		{
			this.name += text.charAt(i);
		}
	}
}