
--------------------------------------------------------------------------------


Mouse Over Image - Play Sound
How To Make This Work


Move you mouse over the devil...
(It only works on Netscape for Windows 95 & NT!!)

To use this script copy this into your head tag! 

<SCRIPT LANGUAGE=JavaScript>
<!-- Hide from old browsers
// Copyright  1999 Doug Popeney
// Created by Doug Popeney (easyjava@easyjavascipt.com)
// JavaScript Made Easy!! - http://www.easyjavascript.com
  function playSound(){
    document.sound1.play();
}
// -->
</SCRIPT>

Now put this anywhere in your page. 

<EMBED SRC="YOUR SOUND FILE" autostart=false HIDDEN=TRUE NAME="sound1" MASTERSOUND>
<A HREF="" onMouseOver="playSound()" onClick="return false;">
<IMG SRC="IMAGE FILE"></A>

If you want the link to work, the previous should look like this... 

<EMBED SRC="YOUR SOUND FILE" autostart=false HIDDEN=TRUE NAME="sound1" MASTERSOUND>
<A HREF="YOUR LINK GOES HERE" onMouseOver="playSound()">
<IMG SRC="IMAGE FILE"></A>
