This looks like it will be a two part issue: 1) Desaturation/Greying out the image. 2) applying many little dots all over it, in an ordered fashion.
1) This is fairly straightforward. Position another element with an semi-transparent grey background over your image. On mouseover, fade the element to full transparency.
2) Assuming cross-browser compatibility is still a concern, there is only one way i can see to accomplish this without a canvas. Youll need to create a circular element (using border-radius) of the correct size, then clone it over and over across the width and height of your image. You will need to calculate the area in your "pixels" of the image, then drop that many in. I would try just left floating them in the transparency container, rather than absolutely positioning them in a loop.
From http://www.tutorialsbucket.com/draw-basic-shapes-css3-tips-and-tricks, here is the css for a single dot:
.circle {
height: 2px;
width: 2px;
background-color: #72b8c2;
border: 2px solid #234e5e;
/* In this case we use half of the
width and height as radius. */
border-radius: 100px;
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
}
I set the circle width to 2px, to give it a slightly more "print" like effect.
Clone an element with that class and a left float as a child of your image overlay, as many times as width * height / circle-diameter works out to, along the lines of:
for(var i=0; i<=$('#container').width()*$('#container').height()/$('#originCircle').width(); i++)
{
$(container).append($('#originElement').clone())
}
May god have mercy on your DOM.