$('li').each(function (i) { $(this).hover(function () { $('#img' + i + 1).fadeOut(); }, function () { $('#img' + i + 1).fadeIn(); }); });