$(document).ready(function()	{

		$(".report .reportTitle, .report .reportDate, .reportNumber .label, .reportContent div:eq(0), .reportAttachments, .reportContent table").remove();
		
		/* $(".report .reportTitle, .report .reportDate, .reportNumber .label, .reportContent div:eq(0), .reportAttachments").remove(); */
		
		$(".two,.three").hide();
		
		$(".online").click(function() {
			$(".two").show();
			$(".one,.three").hide();
		});
		
		$(".obroty").click(function() {
			$(".one").show();
			$(".two,.three").hide();
		});
		
		$(".wig").click(function() {
			$(".three").show();
			$(".one,.two").hide();
		});

});


