Hi there,
Yeah, you can do that, but not with Dreamweaver created code.
Here's what I would do.
1. Add on onmouseover attribute to the first image. Have it call the JavaScript function ChangeImage
2. Give your second and third image (the ones that need to change) a unique ID and name attribute.
3. Add the ChangeImage function
4. Add the following code to that function:
document.images["SecondImage"].src = 'NewSource2.gif';
document.images["ThirdImage"].src = 'NewSource3.gif';
Now, when the user hovers over the first image, the second and third image will change into NewSource2 and NewSource3 respectively.
Repeat the process for the onmouseout of the first image, so you can restore the images.
Does that help?
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|