function LeaderBoard() {
	this.variable = 1;
	
	this.load = function() {
		$.ajax({
			url:  "com/anonymous/ajax/getLeaderBoardList.php?what=" + $("#what").val() + "&who=" + $("#who").val() + "&when=" + $("#when").val(),
			success: function(html){
				$("#leader_board_content").attr("class", "leader_board_content").append(html);
			}
		});
		
		$("#leader_board_content").attr("class", "leader_board_loading").children().remove();
		$("#leader_board_content").html("");
	}
	
	this.whatChanged = function() {
		if($("#what").val() == 'stars_collected') {
			document.getElementById('when').value = 'ever';
			document.getElementById('when').disabled = true;
		}
		else {
			document.getElementById('when').disabled = false;
		}
	} 
}