replace all .click() functions with:
$('img.thumbs_img').click(function(){
$('img.big_img').hide(); // Hides all big images
var id = $(this).attr('id');
id = strid.replace("thumbs_img_", "big_img_");
$('img#'+id).fadeIn('slow'); //Slowly fades in selected image
});