	var msg;
	function deal( input ){
		msg=input[0]["text"];
		var re = /http:\/\/([\S]+)/;
		msg = msg.replace(re, "<a href='http://$1'>http://$1</a>");
	}
	$(document).ready(function() {
		$("#newstext").html(msg);
	});
