// JavaScript Document

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