function PlayMasterSounds() {
	soundManager.url='/includes/snd/';
	soundManager.useFlashBlock = false;
	soundManager.debugMode = false;
	soundManager.useHTML5Audio = true;
	soundManager.onready(function(oStatus) {
		// check if SM2 successfully loaded..
		if (oStatus.success) {
		// SM2 has loaded - now you can create and play sounds!
			soundManager.createSound({
			id: 'vocal',
			url: '/includes/snd/60 inst to long vocal tag.mp3',
			volume: 25
			})
			soundManager.createSound({
				id: 'radio',
				url: '/includes/snd/Image radio 60 use.mp3',
				volume: 30
			})
			soundManager.play('radio',{
				multiShotEvents: true,
				onfinish:function() {
					soundManager.play('vocal');
				}
			})
		} else {
			// (Optional) Hrmm, SM2 could not start. Show an error, etc.?
		}
	});
}

function PlayAlternateSounds() {
	soundManager.url='/includes/snd/';
	soundManager.useFlashBlock = true;
	soundManager.debugMode = false;
	soundManager.useHTML5Audio = true;
	soundManager.onready(function(oStatus) {
		// check if SM2 successfully loaded..
		if (oStatus.success) {
			// SM2 has loaded - now you can create and play sounds!
			soundManager.createSound({
				id: 'bgmusic',
				url: '/includes/snd/60 inst.mp3',
				volume: 25
			})
			soundManager.play('bgmusic',{
				multiShotEvents: true,
				onfinish:function() {
					soundManager.play('bgmusic');
				}
			})
		} else {
			// (Optional) Hrmm, SM2 could not start. Show an error, etc.?
		}
	});
}


