void Start()
 {
     text       = GetComponentInChildren <Text>();
     shop       = FindObjectOfType <Shop>();
     text.text += ": " + cost.ToString("£0.00");
     shop.AddButton(this);
 }