function DisplayComments() {
	var self = this;
	
	self.display = function() {
		$.ajax({
			type: "GET",
			url: "http://www.nba.com/blazers/mozes.xml",
			//url: "http://www.mozes.com/_/rss?campaign_id=139789",
			dataType: "xml",
			success: parseData
		});
	}
	
	function parseData(data) {
		var content;
		for(var i = 0; i < 20; i++) {
			content = comment($(data).find("item")[i])
			$("#viewComment").append(content);
		}
	}

	function comment(data) {
		var c = "<div class='comment'>";
		c += "<div class='description'>";
		c += $(data).find("description").text();
		c += "</div>";
		c += "<div class='clear'></div>";
		c += "</div>";
		
		return c;
	}
	

}