// JavaScript Document
$(document).ready(function(){
$(".recentImg").fadeTo("slow", 0.6);
$(".recentImg").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.6);
});
});