function reader(){}
reader.activateReadar = function(){
	//$("#footer").after('<div id="reader"><p id="closeReader"><a class="out" href="javascript:reader.deactivateReader();">Закрыть</a></p></div>');
	$(".readerHref").attr('href', 'javascript:reader.deactivateReader();');
	
	$("#footer").after('<div id="reader"></div>');
	$("#main").appendTo('#reader');
	$("#page").hide();
	$("#footer").hide();
	$("#cockroach").hide();
	
	$("#main").attr('style', 'padding: 0;')
	$(".main_article").attr('style', 'margin: 0;')
	$(".text_info_right").attr('style', 'padding: 0;')
	$(".crumb").attr('style', 'padding: 0;')
	$("body").attr('style', 'min-width: 500px')
	$("p").attr('style', 'font-size: 120%; line-height: 1.5 !important')
}

reader.deactivateReader = function(){	
	$(".readerHref").attr('href', 'javascript:reader.activateReadar();');
	
	$("#closeReader").remove();
	$("#main").insertAfter("#left");
	$("#page").show();
	$("#footer").show();
	$("#cockroach").show();
	$("#reader").remove();
	
	$("#main").removeAttr('style')
	$(".main_article").removeAttr('style')
	$(".text_info_right").removeAttr('style')
	$(".crumb").removeAttr('style')
	$("body").removeAttr('style')
	$("p").removeAttr('style')
}
