Image Hover
Want to make an image change when it's hovered over? Here is an example (hover over it)
Copy the code below:
<img src="image1.gif"
Change where ever it says 'image1.gif' to the image you want as the default image. Then change the 'image2.gif' with your image that should show up when does somebody hovers over the default image.
onmouseover="this.src='image2.gif'"
onmouseout="this.src='image1.gif'">
