$(document).ready(function() {

//	$("a.checky").click(function () { 
//			$("p").addClass("redacted"); 
//		});

//	$("a.checky").hover(function () {
//	      $("p").addClass("redacted");
//	    }, function () {
//	      $("p").removeClass("redacted");
//	    });


	$("a.checky").click(function(){
		$("p.redacted").removeClass("redacted");	// remove previous class if there is any
		$("p").addClass("redacted");				// add class to the clicked link
		return false;								// this prevents browser from following clicked link
	});


});
