$(function(){
$('#detail a img').hover(
function(){
$(this).fadeTo(250,0.8);
},
function(){
$(this).fadeTo(250,1);
}
);
});
