You might find this code useful:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
function reset()
{
var img1='http://h1.ripway.com/rangana/images/Picture1.png',
img2='http://h1.ripway.com/rangana/images/Picture2.jpg',
img3='http://h1.ripway.com/rangana/images/Picture3.jpg',
img4='http://h1.ripway.com/rangana/images/Picture4.jpg',
img5='http://h1.ripway.com/rangana/images/Picture5.jpg',
img6='http://h1.ripway.com/rangana/images/Picture6.jpg',
img7='http://h1.ripway.com/rangana/images/Picture7.jpg',
img8='http://h1.ripway.com/rangana/images/Picture8.jpg',
img9='http://h1.ripway.com/rangana/images/Picture9.jpg';
// Set all the source of your image element here
var imgarr=[img1,img2,img3,img4,img5,img6,img7,img8,img9], // Set them in this array
img=document.getElementById('rangWrap').getElementsByTagName('img');
for(var i=0;i<imgarr.length;i++)
{img[i].src=imgarr[i];}}
function change(val)
{
var img=document.getElementById('rangWrap').getElementsByTagName('img');
for(var i=0;i<img.length;i++)
{img[i].src=val;}}
window.onload=function()
{
/********* Script by Raymond Angana ************
* First seen in dynamicdrive.com/forum
* username: rangana
* Date Created: July 2, 2008
* This notice must stay intact
/***************** End of notice *******************/
/////////////////// Do not edit beyond this part ///////////////////////
var img=document.getElementById('rangWrap').getElementsByTagName('img');
for(var i=0;i<img.length;i++)
{img[i].onmouseover=function()
{change(this.src);}
img[i].onmouseout=function()
{reset();}}}
</script>
<style type="text/css">
*{margin:0px;padding:0px;}
#rangWrap{
width:610px;
border:3px double #2d2d2d;
padding:10px;
margin:20px auto;
}
img{
width:200px;
height:150px;
}
</style>
</head>
<body>
<div id="rangWrap">
<img src="http://h1.ripway.com/rangana/images/Picture1.png" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture2.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture3.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture4.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture5.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture6.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture7.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture8.jpg" alt="myimage">
<img src="http://h1.ripway.com/rangana/images/Picture9.jpg" alt="myimage">
</div>
</body>
</html>
Bookmarks