

/***********************************************
* JavaScript Sound effect- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

var songfile="" //path to sound file, or pass in filename directly into playsound()

function playsong(songfile){
if (document.all && document.getElementById){
document.getElementById("song").src="" //reset first in case of problems
document.getElementById("song").src=songfile
}
}

function bindsound(tag, songfile, masterElement){
if (!window.event) return
var source=event.srcElement
while (source!=masterElement && source.tagName!="HTML"){
if (source.tagName==tag.toUpperCase()){
playsong(songfile)
break
}
source=source.parentElement
}
}
