Looks nice, but instead of using dreamweaver MM_ javascript functions to show/hide layers, why not use PURE css :hover?<p>Something like:<p>#stan #stanTeteOeilGaucheToucheTrait { display:none; }
#stan:hover #stanTeteOeilGaucheToucheTrait { display:block; }<p>and so on for each bit you are toggling, or even group the toggled layers into one div and show/hide that on hover:<p>#stan .toggledLayers { display:none; }
#stan:hover .toggledLayers { display:block; }<p>Would reduce the amount of redundant code :)<p>(hope yc doesn't destroy my comment)