
$(document).ready(function() {

	$(".qr img").css({ opacity: 0.2 });
	$('.qr img').hover(
		    function() {
		        $(this).stop().animate({ opacity: 1.0 }, 700);
		    },
		    function() {
		        $(this).stop().animate({ opacity: 0.2 }, 700);
		    }
	);
   
});
