$(function(){
	$('ol > li strong').live("click", function() {
		$(this).next(".inst").remove().end().nextAll().toggle().parent().toggleClass("active");
		if ($(this).parent().hasClass('active'))
			$(this).css('color', 'black');
		else
			$(this).css('color', 'red');
	});
	$('ol > li strong').hover(
		function() {
			if (!$(this).parent().hasClass('active'))
				$(this).css('color', 'red');
		},
		function() {
			if (!$(this).parent().hasClass('active'))
				$(this).css('color', '#A38248');
		}
	)
});