change this for every link:
PHP Code:
<a onmouseover="changePicture('b1', 'images/aa1.jpg');num=0;slideshow(0);return false" href="aa.html" onmouseout="changePicture('b1', 'images/aa2.jpg');"><img alt="Album Art" src="images/aa1.jpg" id="b1" class="aa" /></a>
<a onmouseover="changePicture('b2', 'images/am1.jpg');num=1;slideshow(1);return false" href="am.html" onmouseout="changePicture('b2', 'images/am2.jpg');"><img alt="Animal Mania" src="images/am1.jpg" id="b2" class="am" /></a>
add this in mouseover.js:
PHP Code:
function changePicture(id, src)
{
document.getElementById(id).src = src;
}
Bookmarks