Featured Work
$(document).ready(function(){ $(".thumbnails img").fadeTo("slow", 1); // This sets the opacity of the thumbs to 100% when the page loads
$(".thumbnails img").hover(function(){ $(this).fadeTo("fast", 0.80); // This should set the opacity to 60% on hover },function(){ $(this).fadeTo("slow", 1); // This should set the opacity back to 100% on mouseout }); });
© 2011 | ZACK BAILEY | images may not be reproduced without permission.