/**
 * @author Sputinyk
 */
jQuery(document).ready(function(){
	function reloadMural(){
		$("#mural").html("<img src='images/loader.gif' style='margin:25px; border:0; background:none' />");
		$.post("scripts/php/phpScripts/mural.php",{},function(data){
			$("#mural").html(data);
		})
	}
	
	reloadMural();
	
	$("#enviar").click(function(){
		$(this).blur();
		var nomeSend = $("#nome").val();
		var msgSend = $("#msg").val();
		if((nomeSend == "") || (msgSend == "")){
			alert("Preencha os dois campos!!!");
		} else{
			$.post("scripts/php/phpScripts/muralAdd.php",{nome: nomeSend, msg: msgSend},function(){
				reloadMural();
				$(".areaForm").fadeOut(1000,function(){
					$("#respostaAjax").html("<h3 style='color:blue'>Sua mensagem foi postada com sucesso</h3>");
				});			
			})
		}
	})
})