It it working partially, but how do I get the below to work with multiple audio files:
updated for multiple sound files
This is what I used before:
http://plugins.jquery.com/project/sound
Usage:
$("#sound").sound({swf: url});
$("#sound").load(url);
$("#sound").play();
$("#sound").pause();
$("#sound").stop();
$("#sound").volume(0-100);
(taken from jQuery plugins page)
for mouseover:
$('#selector').mouseover(function() {
$("#sound").play('path/to/wav/or/mp3');
});
$('#second-selector').mouseover(function() {
$("#sound2").play('path/to/second/wav/or/mp3');
});