jQuery(function($) {
  $('.thm').click(
    function(){

		var text = $(this).attr("title");
		$("#photo_txt").text("" + text);

        var imgSrc = this.src;
        var fType = imgSrc.substring(imgSrc.lastIndexOf('.'));
        var imgName = imgSrc.substr(0, imgSrc.lastIndexOf('.'));
        var imgBig = imgName + '_b' + fType;
　		$("#left_clinic img").attr("src", imgBig);
}
  ); 

});


