|



















| |
|
Copy this code for the header |
<SCRIPT LANGUAGE="JavaScript"
type="text/javascript">
<!-- JavaScript by web-architect copyright © 2000, web-architect.
if(document.images) {
pics = new Array();
pics[1] = new Image();
pics[1].src = "../images/b.jpg";
pics[2] = new Image();
pics[2].src = "../images/a.jpg";
}
function changer(from,to) {
if(document.images) {
document.images[from].src = pics[to].src;
}
}
//-->
</SCRIPT> |
|
Copy this code for the body
(If you want to make the image a link, change the "javascript:void" into a
link to the required page) |
<a onMouseOver="changer('img1',2)"
onMouseOut="changer('img1',1)" href="javascript:void">
<img name="img1"
border="0" vspace="0" hspace="0" src="../images/b.jpg"
alt="©BermanGraphics.com" width="400" height="276"></a> |
|
Scripts like this are common on the
Internet and can usually be copied providing that the author's comment tag
isn't edited out
This has been modified from a
button script |
|