$(function()
{

	jQuery.ajax({
		type: "POST",
		url: "timeline.php",
		success: function(response) {
			obj = document.getElementById('my-timeline');
			if (obj) {obj.innerHTML = response;}
		}
	});
	
});

