// JavaScript Document

$(document).ready(function(){
	$("#form_s_noticias").submit(function(){
	if(/^[A-Za-z\-][A-Za-z0-9_\-]*@[A-Za-z0-9_\-]+\.[A-Za-z0-9_\-.]+[A-za-z]$/.test($('#s_correo').val())){
		$("#s_noticias_mensaje").html('Procesando.....<img src="images/loader_mini.gif" width="16" height="16" />');
		$.post("procesa_noticias.php",{ s_correo:$('#s_correo').val(),rand:Math.random() } ,function(data)
		{
			if(data)
			{	
				$("#q_noticias_mensaje").fadeTo(200,0.1,function()
				{
					$(this).html('').fadeTo(900,1,
						function(){ 
							$("#q_noticias_mensaje").addClass('error').html(data);
							$("#q_noticias_error").html('');
					});
				});
			}	
		});
	}else{
		$("#q_noticias_error").fadeTo(200,0.1,function(){
			$(this).addClass('error_12').html('Digite una direccion valida de correo').fadeTo(900,1);										
			})
		}
	return false;
	});
});			
