Hello. Please take a look at this code: [code] $(".box img").fadeTo("500", 0.6); // This sets the opacity of the thumbs to fade down to 60% when the page loads
$(".box img").hover(function(){ $(this).fadeTo("normal", 1.0); // This should set the opacity to 100% on hover },function(){ $(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout })[/code] The problem I experience is that when I hover the images several times in a row. They blink as many times as I have hovered them. Appreciated if someone could direct me to a solution. Birger :)