You could do it with some image naming conventions an an onmouseover function. Have a regular page icon image, then also upload one with _hover appended on the image name. then use < img src="{Page.IconFile}" onmouseover="this.src=this.src+'_hover'" onmouseout="this.src=this.src.replace('_hover','')" /> You could also do it with background positioning, but i think that would complicate it. |