// JavaScript Document

	function Trim(str){return str.replace(/^\s+|\s+$/g,"");}

	
	$(document).ready(function()
	{
		$('#enviar-rodape').click(function()
		{		
			var nome	= Trim( $('#nome_news').val() );
			var email 	= Trim( $('#email_news').val() );
			
			if( ( nome != '' || nome != 'Nome') && ( email != '' && email != 'E-mail' ) ) {
			
				$.post( 'add.news.php', {'nome': nome, 'email': email }, 
					function( msg )
					{
						alert( msg );
					}, 
				'html');
				
			} else {
				
				alert( 'Preencha os campos "Nome" e "E-mail" antes de enviar!' );
				
			}
			
			return false;
			
		});
		
	});

