/* this jsut makes the thumbnails look sexy on rollovers */ Event.observe(window, 'load', sexythumbs); function sexythumbs() { $$("div#thumbs img").each(function(el){ Event.observe(el, "mouseover", function(evt){ new Effect.Opacity(el, {duration:0.5, from:0.5, to:1.0}); }) }); }