addNamespace("ValenceWap.Pages");
ValenceWap.Pages.CommentListing_class = Class.create();
Object.extend(ValenceWap.Pages.CommentListing_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	submitVote: function(commentID, voteType) {
		return this.invoke("submitVote", {"commentID":commentID, "voteType":voteType}, this.submitVote.getArguments().slice(2));
	},
	allowVote: function(commentID) {
		return this.invoke("allowVote", {"commentID":commentID}, this.allowVote.getArguments().slice(1));
	},
	initialize: function() {
		this.url = '/ajaxpro/ValenceWap.Pages.CommentListing,Spikedhumor2.ashx';
	}
}));
ValenceWap.Pages.CommentListing = new ValenceWap.Pages.CommentListing_class();

