You don't need JavaScript to accomplish the opacity mouseover effect actually, just use CSS, specifically, the :hover pseudo class. Inside ddphpalbum.css, try adding the code in red to the existing code block below:
Code:
.photodiv img{ /*CSS for each image tag*/
border: 0;
width: 200px;
height: 106px;
cursor: hand;
cursor: pointer;
-moz-opacity:0.5;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
opacity:0.5;
}
.photodiv img:hover{
-moz-opacity:1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=1)";
opacity:1;
}
where a value of 0.5 means the thumbnail images are initially 50% transparent before the mouse rolls over them.
Bookmarks