$(document).ready(function(){
$("a.fade-image-link").fadeTo("slow", 0.6);
$("a.fade-image-link").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.6);
});

$("img.fade-image").fadeTo("slow", 0.5);
$("img.fade-image").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.5);
});

});