$(document).ready(function(){
	if($(".thumb_image").length > 0)
	{
		$(".thumb_image").click(function(){ //.not(".thumb_active")
			$(".thumb_image").removeClass("thumb_active");
			$(this).addClass("thumb_active");
			
			$(".big_image").hide();
			$(".big_image:nth-child("+($(".thumb_image").index(this) + 1)+")").show();
		});
	}
});
