function change_typed_blog(){
	//alert(document.URL);
	if(document.URL=='http://www.runa.org/home.aspx'){
		$.ajax({
			type: "GET",
			url: 'http://www.runa.org/blog/get_latest_post.php',
			success: function(msg){
				$("#devblog").html(msg);
		}
		});
	}
}

