$(document).ready(function()
{
	$("NewsContainer").hide();
	
	//Load News Contenet

	$("#NewsContainer").load("php/News.php",function()
	{
		$("#NewsLoading").fadeOut("slow",function()
		{
			$("#NewsContainer").fadeIn("slow");
		});
	});
});