/* * Date: 2009-08-26T23:50:00+09:00 * Author: ayumi fujii * Description: Site Script * Lisence: (c) DaLaFarm co,ltd */ $(document).ready(function(){ $("ol#content li.entry h2.entry-title img").hover( function(){ $(this).stop().animate({ backgroundColor: '#53a0df' }); }, function(){ $(this).stop().animate({ backgroundColor: '#e3e3e3' }); } ); });