jQuery(document).ready(function() {
	jQuery('.page-id-2 #content img').each(function() {
		jQuery(this).hover(function() {
			jQuery(this).stop().animate({ opacity: 0.2 }, 200);
		},
	   function() {
		   jQuery(this).stop().animate({ opacity: 1.0 }, 500);
	   });
	});
});
