$(document).ready(function(){
  $(".thumb_list").each(function(){
    $(this).click(function(){
      var src = $("img",this).attr("src");
      src = src.replace("/thumb/s_","/thumb/")

      $("#main_img").fadeOut("slow",function() {
        $(this).attr("src",src);
        $(this).fadeIn();
      });
    });
  });

});


