$(document).ready(function(){
	$("#refreshviewercount").click(function() {
		$.get("/ajax/jtv_viewer_count/", { q: $("#hidden_jtvuser").val() }, function(data) {
			$("#viewercount").find("span").text("Viewer Count: ".concat(data.result));
		},"json");
	});
});
