
$(document).ready(function(){ 
$(".loop ").fadeTo("slow", 0.0); 
$(".loop").hover(function(){ 
$(this).fadeTo("slow", 0.3); 
},function(){ 
$(this).fadeTo("slow", 0.0); 
}); 
});

$(document).ready(function(){ 
$(".fromfolio ").fadeTo("slow", 1.0); 
$(".fromfolio").hover(function(){ 
$(this).fadeTo("slow", 0.7); 
},function(){ 
$(this).fadeTo("slow", 1.0); 
}); 
});


$(document).ready(function(){ 
$(".thumbnail ").fadeTo("slow", 1.0); 
$(".thumbnail").hover(function(){ 
$(this).fadeTo("slow", 0.7); 
},function(){ 
$(this).fadeTo("slow", 1.0); 
}); 
});


