$(document).ready(function()
	{
		hideUpdates();
	});

function hideUpdates()
{
	setTimeout(function ()
			{
				$('#updates').fadeOut();
			},3500);
}

function showUpdates(html)
{
	$('#updates').html(html).fadeIn();
	hideUpdates();
}