$(document).ready(function() {

	$(".small_photo img").click(function() {
	
		s_src = $(this).attr("src");
		b_src = $("#big_photo img").attr("src");
		$(this).attr("src", b_src);
		$("#big_photo img").attr("src", s_src);
	
	});


});
