var  CommentHandler = Class.create({
	initialize: function(site_id) {
		this.sid = site_id;
	},
	
	addComments: function(element_hash) {
		var commentNumsUrl = "http://slpsys.com/c/comments/site_comments/";
		commentNumsUrl += this.sid + "?";
		element_hash.keys().each(function(s) {
			commentNumsUrl += s + "&";
		});
		commentNumsUrl = commentNumsUrl.substring(0,commentNumsUrl.length-1);
		var s = "";
	}
});
