This should work!
If not then try to check you plug-ins...
<html>
<head>
<title><!-- Sample --></title>
<script type="text/javascript">
<!--
function playSound( mysound )
{ thisSound = document.getElementById(mysound);
thisSound.Play();
}
//-->
</script>
</head>
<body>
<embed src="someaudiofile.mp3/mid/wav" autostart="false" width="0" height="0" id="sound1" enablejavascript="true" />
<a href="javascript:void(0);" onmouseover="playSound('sound1');">Play Sound!</a>
</body>
</html>