var sound3Embed = null;
			
function init() {}
function soundPlay() {
				sound3Stop();
				sound3Embed = document.createElement("embed");
				sound3Embed.setAttribute("src", "../images/rollover.wav");
				sound3Embed.setAttribute("hidden", true);
				sound3Embed.setAttribute("autostart", true);
				document.body.appendChild(sound3Embed);
			}

function sound3Stop()
{
	if ( sound3Embed ) 
	{
		document.body.removeChild(sound3Embed);
		sound3Embed = null;
	}
}

