Doofi: Soundwiedergabe bei MouseOver Browserunabhängig

Hallo Forum,

ich habe eine gif-Datei auf einer Webseite, die bei mouseover animiert wird.
nun möchte ich für die animationszeit (oder die Dauer des mouseover, oder genauer bis zum mouseout) eine Audio-Datei wiedergeben.

Soweit hab ichs auch schon hinbekommen.. hier mal mein bisheriger code:
Das Script im Header:

<script>  
// Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)  
// Visit JavaScript Kit at http://www.javascriptkit.com/ for full source code  
//** Usage: Instantiate script by calling: var uniquevar=createsoundbite("soundfile1", "fallbackfile2", "fallebacksound3", etc)  
//** Call: uniquevar.playclip() to play sound  
var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:  
	"mp3": "audio/mpeg",  
	"mp4": "audio/mp4",  
	"ogg": "audio/ogg",  
	"wav": "audio/wav"  
}  
function createsoundbite(sound){  
	var html5audio=document.createElement('audio')  
	if (html5audio.canPlayType){ //check support for HTML5 audio  
		for (var i=0; i<arguments.length; i++){  
			var sourceel=document.createElement('source')  
			sourceel.setAttribute('src', arguments[i])  
			if (arguments[i].match(/\.(\w+)$/i))  
				sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])  
			html5audio.appendChild(sourceel)  
		}  
		html5audio.load()  
		html5audio.playclip=function(){  
			html5audio.pause()  
			html5audio.currentTime=0  
			html5audio.play()  
		}  
		return html5audio  
	}  
	else{  
		return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}  
	}  
}  
//Initialize two sound clips with 1 fallback file each:  
var mouseoversound=createsoundbite("admin/s1.wav", "admin/s1.mp3")  
var clicksound=createsoundbite("admin/s1.wav", "admin/s1.mp3")  
var uniquevar=createsoundbite("admin/s1.wav", "admin/s1.mp3")  
</script>

Und der Aufruf:

  
..  
<td id="top2b">  
<img src="images/inklusive_logo.jpg" border="0"      onMouseOver="this.src='images/inklusive_logo.gif';mouseoversound.playclip();" onMouseOut="this.src='images/inklusive_logo.jpg';">  
</td>  

Wie kann ich aber jetzt die Sound-Wiedergabe beim Mouseout beenden? Wäre schön, wenn mir da jemand helfen könnte, mit html5 oder auch javascript steh ich leider nicht sooo gut :(

Lg Micha