soundManager.debugMode = false;             // disable debug mode
		soundManager.defaultOptions.volume = 10;    // set global default volume
		var playingMusic = true;
		soundManager.onload = function() {
			var stop = document.createElement('a');
			var stopText = document.createTextNode('Tysta musik');
			stop.setAttribute('href','#');
			stop.setAttribute('id','mute');
			stop.appendChild(stopText);
			stop.onclick = function(noPlay) {
					if(playingMusic == true) {
						soundManager.stopAll();
						playingMusic = false;
						this.firstChild.nodeValue = 'Spela musik';
						this.setAttribute('id', 'play');
					} else {
						if(noPlay != 'spela_inte!') soundManager.play('song2');
						playingMusic = true;
						this.firstChild.nodeValue = 'Tysta musik';
						this.setAttribute('id', 'mute');
					}
					return false;
				}
//			document.body.appendChild(stop);
					soundManager.createSound({id:'song2',url:'waiting_for_you.mp3',onfinish:function(){soundManager.play('song2');}});
					soundManager.play('song2');
		}
