void Start()
    {
        planet = GameObject.Find("Planet");
		
		sh = GameObject.Find("SoundHelper").GetComponent<SoundHelper>();
		
		musicsource = gameObject.GetComponent<AudioSource>();
		sh.Fade(musicsource, true, 0.5f);
    }