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

