// JavaScript Document


$(document).ready(function(){
$("img.a").fadeTo("fast", 0.3);
$("img.a").hover(
function() {
$(this).stop().animate({"opacity": "1"}, "fast");
},
function() {
$(this).stop().animate({"opacity": ".3"}, "fast");
});
 
});

