window.addEvent('domready', function() {
	var post_time = $("content_div").getElements(".post_time");
	post_time.each(function(el){
		var _this = el;
		var str_post_time = _this.get("text");
		var arr_post_time = str_post_time.split(",");
		var timedate = "<span class='timedate'>"+arr_post_time[0]+"</span>";
		var timemonth = "<span class='timemonth'>"+arr_post_time[1].substr(0,3)+"</span>";
		var timeyear = "<span class='timeyear'>"+arr_post_time[2]+"</span>";
		_this.set("html" , timedate + timemonth + timeyear);
   });

   var paper_info_time = $("content_div").getElements(".paper_info_time");
   paper_info_time.each(function(el){
        var _this  = el;
		var str_info_time = _this.get("text").slice(0,-5);
		_this.set("text",str_info_time);
   });
});