jQuery(document).ready(function() {
	jQuery('.thumb').click(function() {
		addr = jQuery(this)
			.attr('src')
			.replace(/size=.+/, 'size=460x345');
		jQuery('.photo')
			.attr('src', '/img/1x1.gif')
			.attr('src', addr);
	});
});
