McShay, Here's one way to do it.
In VSD Click "Edit" then "Add Files".
Now add a new folder to the Root. lets call it "images".
Now click on your new folder and click add files. Browse to the images that you want to use on your page and select them all.
Now click on the root again and lets add another new folder. Lets call it "clicksounds".
Now click on this new folder and browse to the location of the sounds that you want to use with your images and select them all.
Now goto the page you want to have the images in and click on the add HTML tool in the left hand panel. In the HTML Body paste this code.
<span id="dummy" onclick="playSound('clicksounds/coffeecup.wav');"><img src="images/cup.jpg" width="200" height="200" border="0" /></a></span>
Adjust the width, height and file names to what your using.
Now in that same HTML box click on the Header HTML tab and paste this code.
<script language="javascript" type="text/javascript">
function playSound(soundfile) {
document.getElementById("dummy").innerHTML=document.getElementById("dummy").innerHTML +
"<embed src=\""+soundfile+"\" hidden=\"true\" autostart=\"true\" loop=\"false\" />";
}
</script>
You'll have to paste a html box and put the two pieces code above in it for each image and the sound that you want to play when it's clicked on.
Now save and click publish or preview.
Hope this helps.