$(document).ready(function() {
	// If there is a flash message.
	if ($("#flashMessages").length) {
		// Hide the adminPannel.
		$("#adminPannel").hide();

		// Animate the message and show the adminPannel.
		$("#flashMessages").fadeIn(500)
						   .delay(1500)
						   .fadeOut(250, function() {
							   $("#adminPannel").animate({
								   "height": "toggle",
								   "width": "toggle",
								   "opacity": "toggle"}
							   , 400);
						   });
	}
});
