jQuery(document).ready(function () {
  jQuery('.testimonial a').click(testimonialModal);
});

function testimonialModal() {
  var src = jQuery(this).find('img:eq(0)').attr('src');
  jQuery('#modal').html('<img src="' + src + '" />');
  jQuery('#modal').dialog({
    height: 660,
    width: 834,
    resizable: false,
    modal: true,
    title: jQuery(this).find('span').html()
  });

  return false;
}

