$(document).ready(function() {
	$(".thumb").click(function() {
		var speed = 400;
		var split_name_thumb = $(this).find("img.shown").attr("src").split("_");
		var split_name_large = $("#large-image").find("img").attr("src").split("_");
		var thumb_id = $(this).attr("id");
		
		$("#large-image").find("img").animate({left: "550px"}, speed, function() {
			$(this).attr("src", "images/rotation/large_" + split_name_thumb[1]).animate({left: 0}, speed);
		});
		
		// here $(this) is the DIV
		$(this).find("img.shown").animate({left: "-153px"}, speed, function() {
			// here $(this) is the IMG
			$(this).attr("src", "images/rotation/thumb_" + split_name_large[1]).animate({left: 0}, speed);
		});
		
	});
});


