// JavaScript Document


$(function() {
	$("a img").hover(function() {
	   $(this).css({ opacity: 0.9 });
    }, function() {
        $(this).css({ opacity: 1.0 });
    });
	
});

