This is a better fix to the gore than the Javascript solution – just paste this in themes.
.post-image {
opacity: .2;
transform: scale(.5);
filter: blur(5px);
transition: all 233ms;}
.post-image:hover {
opacity: 1;
transform: scale(1.0);
filter: blur(0px);
transition: all 233ms;}