function loadTwitter() {
	$.ajax({
		type: "POST",
		url: "/home/home.ajax.php",
		data: "lang=<?php echo $GLOBALS['pageLanguage']; ?>",
		success: function(msg){
			$('#tweets').html(msg);
			$('#tweets').fadeIn();
		}
	});
}
