$(document).ready(function() { 
	
});

function announcement(msg)
{
	$('#message-container').fadeIn('slow');
	$('#message-container').html('<div id="announcement">'+msg+'</div>');
	setTimeout(function(){ $('#message-container').fadeOut('slow'); }, 3500);

}
