function get_last_news() {
	if(document.domain.search(/writings.com/) != -1) {
	jQuery.getJSON("client_core/get_last_news.php?json=?", function(data) {
		for (var x = 0; x< data.length; x++) {
			document.getElementById('last_news_title').innerHTML = data[x].last_news_title;
			document.getElementById('last_news_body').innerHTML = data[x].last_news_body+' '+data[x].last_news_more;
		}
  });
}
}

