	$(document).ready(function() { 
 		 $("span.spoiler").hide();
	  	 $('<a class="detalnishe"> Äåòàëüí³øå&gt;&gt;</a> ').insertBefore('.spoiler');                		
                        
			$("a.detalnishe").click(function(){
			$(this).parents("p").children("span.spoiler").fadeIn(500);
			$(this).parents("p").children("a.detalnishe").fadeOut(1);
			$(this).parents("p").children("a.zgornuty").fadeIn(100);

		});
		 $('<a class="zgornuty"> Çãîðíóòè&lt;&lt;</a> ').insertBefore('.spoiler');
	         $("a.zgornuty").hide(); 
     		 $("a.zgornuty").click(function(){
			$(this).parents("p").children("span.spoiler").hide();
			$(this).parents("p").children("a.zgornuty").fadeOut(1);
			$(this).parents("p").children("a.detalnishe").fadeIn(1);
			$("div").hide();
			$("div").show();
		});

	}); 
