﻿$(document).ready(function() {
    $('#content .novel ul li img').hover(function() {
        var $img = $(this);
        $img.animate({
            opacity: 1
        });
    }, function() {
        var $img = $(this);
        $img.animate({
            opacity: 0.15
        });
    });
});