$(document).ready(function() { 
	
	$('#thumbnail_imgs img').click(function() {
		var currentMain = $('#select_img').attr('src');
		var selected = $(this).attr('src');
		
		$('#select_img').attr({src: selected});
		$(this).attr({src: currentMain});
	});
	
});