	$(document).ready(function() { 
		
		$("span.spoiler").hide();
		
	  	 $('<a class="reveal">View...</a> ').insertBefore('.spoiler');
	
		$("a.reveal").click(function(){
			$(this).parents("p").children("span.spoiler").fadeIn(2500);
			$(this).parents("p").children("a.reveal").fadeOut(600);
		});
		
		$("a.hide").click(function(){
			$(this).parents("p").children("span.spoiler").fadeOut(2500);
			$(this).parents("p").children("a.reveal").fadeIn(600);
		});

	}); 
