$(function () {    $("img.fade").hover(function () {        $(this).stop().fadeTo("slow", 0.8);    }, function () {        $(this).stop().fadeTo("slow", 1.0);    });});
