$(function(){
	$.ajax({
		url: 'getfeed.php',
		success: function(request){
			$('#whats').html(request);
		}
	});
});

