jQuery(document).ready(function(){
 
 
jQuery(".thumbnailFeature, .thumbnailFace").hover(
function() {
jQuery("img", this).animate({"opacity": ".8"}, "fast");
jQuery("H2", this).animate({"opacity": "1"}, "fast");
},
function() {
jQuery("img", this).animate({"opacity": "1"}, "fast");
jQuery("H2", this).animate({"opacity": ".6"}, "fast");
});
 
});


