$(document).ready(function() {
	$("#shout").fadeIn("slow");
	$("#shout").click(function () {
		$("#shout").fadeOut("slow");
		return false;
	});
});
