function ButtonLabel(text){
	this.label=text;
	this.buttonName="";
	for(var i=0;i<text.length;i++){
		if(i==0)
		{
			this.buttonName=text.charAt(i).toLowerCase();
			continue;
		}else if(text.charAt(i)==' ')continue;
		else this.buttonName+=text.charAt(i);
	}
}