$(document).ready(function() {
	$('span.word_hidden1').click(function(){
		$(this).toggleClass('word_hidden2');
	});

	$('span.word_shown1').click(function(){
		$(this).toggleClass('word_shown2');
	});
});
