Here is a script to blur images until mouse over when needed
goes in Options/Theme
.post-image {
opacity: .2;
transform: scale(.75);
filter: blur(5px);
transition: all 233ms;}
.post-image:hover {
opacity: 1;
transform: scale(1.0);
filter: blur(0px);
transition: all 233ms;}