﻿$ (function () {
	$ ('.cnt-about-wrap .view-related-images').click (function () {
		$ ('.cnt-about-wrap .na-related-img-wrap').stop() .slideToggle ('normal') ;
		$(this).text($(this).text() == 'View related images' ? 'Hide related images' : 'View related images'); // <- HERE
		return false;
	});
});
