CSS | Type: CSSB&W Image to Color on Hover

Cool little bit of CSS magic.

img.saturation { filter: saturate(0); } /*turns color image into B&W*/
img.saturation:hover { filter: saturate(1); } /*restores color*/

Reference Links