
	var sound2Embed = null;
	var sound3Embed = null;
	
	function sound3Play()
	{
			soundStop();
			sound3Embed = document.createElement("embed");
			sound3Embed.setAttribute("src", "../sounds/2261_Andrew_Duke_hiss1.wav"); // Found at http://freesound.iua.upf.edu/samplesViewSingle.php?id=2261, used under CC Sampling Plus 1.0 License
			sound3Embed.setAttribute("hidden", true);
			sound3Embed.setAttribute("autostart", true);
			document.body.appendChild(sound3Embed);
	}
	
	function sound2Play()
	{
			soundStop();
			sound2Embed = document.createElement("embed");
			sound2Embed.setAttribute("src", "../sounds/psycho.wav");
			sound2Embed.setAttribute("hidden", true);
			sound2Embed.setAttribute("autostart", true);
			document.body.appendChild(sound2Embed);
	}
	
	function soundStop()
	{
			if (sound3Embed)
			{
				document.body.removeChild(sound3Embed);
				sound3Embed = null;
			}
			
			if (sound2Embed)
			{
				document.body.removeChild(sound2Embed);
				sound2Embed = null;
			}
	}
