WORK
ABOUT
LINKS
paul phillip ruppert.
_________________________________
_________________________________
_____________________________________________________________________________________________________________________________________________________________
_________________________________
$(".project_thumb").unbind('mouseenter').unbind('mouseleave'); // reset the hover to prevent doubling
$(".project_thumb").bind("mouseenter",function() { // crete hover
$(".project_thumb img").fadeTo("fast", 0.7); // Sets the opacity to 70% on hover
}).bind("mouseleave",function(){
$(".project_thumb img").fadeTo("fast", 1.0); // Sets the opacity back to 100% on mouseout
});