var linkText = ['Больше изображений', 'Меньше изображений'];

$(document).ready(function() {
	$('a.show-hide-images').data('state', 0).click(function() {
		$(this)
			.data('state', ($(this).data('state') + 1) % 2)
			.text(linkText[$(this).data('state')])
			.parents('table').first().find('tr.additional-photo')
				.toggle()
				.find('a:empty').each(function() {
					$(this).append(
						$('<img />').attr({ 
							src: $(this).attr('rel'), 
							alt: $(this).attr('title'), 
							title: $(this).attr('title'),
							width: 108,
							height: 108
						})
					);
				});
		return false;
	});
});
