No idea why this simple rollover script isn't working!! HTML?

BIG DADDY

New member
<html>
<body bgcolor= "#00CCFF"
<head>
<title>Apps</title>

<script language="JavaScript">

out = new Image;
over = new Image;

out.src = "images/Apps.psd";
over.src = "images/Apps rollover.psd";

</script>

</head>
<body>

<a href="Apps.html"
onMouseover="document.menu.src=over.src"
onMouseout="document.menu.src=out.src"

img name="menu" src="images/Apps.psd"></a>

</body>
</html>

The background colour works. I got the code from a website. Their example worked well, I've done exactly the same, but i changed the images and href around, and now it doesn't work. Its driving me mad!
 
you must change images extension you have this code:"images/Apps.psd",it must be:"images/Apps.jpg" or "images/Apps.gif",make image in .jpg format and then try...
 
Back
Top