$(document).ready(function(){
	$("#topBtnViews").click(function () { 
		$("#topComments").hide();
		$("#topViews").show();
		$(this).removeClass("inactive");
		$(this).addClass("active");
		$("#topBtnComments").removeClass("active");
		$("#topBtnComments").addClass("inactive");
	});
	$("#topBtnComments").click(function () {
		$("#topComments").show();
		$("#topViews").hide();
		$(this).removeClass("inactive");
		$(this).addClass("active");
		$("#topBtnViews").removeClass("active");
		$("#topBtnViews").addClass("inactive");
	});
});

