$(document).ready(function() {
	$('img.swappable').click(function() {
		if (this.src.indexOf('_alt') > 0) {
			this.src = this.src.replace('_alt', '');
		} else {
			this.src = this.src.replace('.jpg', '_alt.jpg');
		}
	});

	$('img.swappable').each(function(i) {
		$(this).after('<img src="' + this.src.replace('.jpg', '_alt.jpg') + '" style="display: none" />');
	});
});