If you had 20 images, each with a class of .more, this would tell you which one was clicked on.
$(document).ready(function() {
$('.more').click(function() {
var index = $(".more").index(this);
alert("Panel number is: " + index)
});
)});











