/*

Scripting for Rose Thorn web site
Created by Tom W. Most on March 22, 2008

*/


jQuery(document).ready(function ($) {
	// Hide solutions
	$('.solution').each(function() {
		var div = this;
		$('<input type="button" value="Show Solution">').click(function() {
			$(div).show("normal");
			$(this).hide("normal");
		}).insertAfter(div);
		$(div).hide();
	});
});
