$('img.next').click(function() { var next = current + 1; if (next > total) next = total; if (current != total) { $('#pic' + current).fadeOut('slow'); $('#pic' + next).fadeIn('slow'); current = next; setHeight(current) $('#imageNumber').html(current + ' of ' + total) } return false; });
ここに写真の説明を記述する・・・