// onLoad
$(document).ready(function()
{
	$("#twitter-follow").hide();
	$('#twitter').load('inc/twitter.php', function()
	{
		setTimeout(function()
		{
			$("#twitter-follow").fadeIn('slow');
		}, 1500);
	});
});
