$(document).ready(function () {
  $("#thumbs img").click(function () {
    $('#full')[0].src = this.src.replace("-thumb.gif", ".jpg");
  })
});