	// просмотры
	function viewCountModule(id) {
		$.ajax({
		   type: "POST",
		   url: "/view_count/",
		   data: "id="+id,
		   dataType: "json",
		   success: function(){}
		 });	 		
		
	}

	function processTopView(num) {
		for(i=1; i<=2; i++ ) {
			if(i==num) {
				$("#topView"+i).animate({ opacity: "show" }, "slow");
				$("#topViewTab"+i).addClass("bg_red");
			} else {
				$("#topView"+i).hide();
				$("#topViewTab"+i).removeClass("bg_red");
			}	
		}
		return false;			
	}
	
	function processTopComment(num) {
		for(i=1; i<=2; i++ ) {
			if(i==num) {
				$("#topComment"+i).animate({ opacity: "show" }, "slow");
				$("#topCommentTab"+i).addClass("bg_red");
			} else {
				$("#topComment"+i).hide();
				$("#topCommentTab"+i).removeClass("bg_red");
			}	
		}
		return false;			
	}
