$(document).ready(function(){
	 $('#negro').click(function(){
					  $('#foi').fadeOut(function(){
					  $('#negro').fadeOut();
					  $('#newss').html(' ');
					  });
					  });
					  $("#bt_news").mouseover(function(){
					  $("#bt_news img").css({opacity:'0.7'})
					  
					  });
					   $("#bt_news").mouseleave(function(){
					  $("#bt_news img").css({opacity:'1.0'})
					  
					  });
		$("#bt_news").click(function(){
			
			if($("input#nome").val() == ""){
				
				$("input#nome").css({border:'2px #f00 solid'});
				$("input#nome").focus();
				
			}
			else if($("input#email").val() == ""){
				
				$("input#email").css({border:'2px #f00 solid'});
				$("input#email").focus();
				
			}
				
			
			else{
			enviaremail2();	
			}
			
			
			
		});
		
		
		
		
		
	
});

function enviaremail2(){
	
		$.post("ibeac-admin/m/cadastro_mail.php",
			   {email:$("input#email").val()},
			   function(respondeemail2){
				  
				if (respondeemail2 == 600){
					$("input#email").css({border:'2px #f00 solid'});
					$("input#email").focus();
					alert('E-mail Incorreto');
					}
				
					else{
					$('#newss').html('<div id="negro" style="background:#000; display:none; position:fixed; left:0px; top:0px; z-index:1000;"><p style="position:absolute;left:50%;margin-left:-230px;height:205px;overflow:hidden;"><img src="images/carregando.gif" alt=""/></p><p style="color:#fff; font-size:20px; position:absolute; left:50%;margin-left:-35px;top:210px;font-family:verdana;">Enviando</p></div><span id="foi" style="display:none; position:fixed; left:50%; margin-left:-155px; top:0px; z-index:1001;"><img src="images/mensagem_enviada.png" alt="" /></span><span id="naofoi" style="display:none; position:fixed; left:50%; margin-left:-155px; top:0px; z-index:1001;"><img src="images/mensagem_fail.png" alt="" /></span>');
					$('#negro').css({width:'100%',height:'100%',opacity:'0.8'});
					$('#negro').fadeIn(function(){
					enviarRegistro2();	
				});
					}
				   
			   });
	
}
function enviarRegistro2(){
	
		$.post("ibeac-admin/m/cadastro_mail.php",
			   {nome:$("input#nome").val(), email:$("input#email").val()},
			   function(respondeEdition2){
				  
				  if(respondeEdition2 == 500){
					 $('#negro p').fadeOut(function(){
					  $('#foi').fadeIn();
					  $('#negro').click(function(){
					  $('#foi').fadeOut(function(){
					  $('#negro').fadeOut();
					  $('#newss').html(' ');
					  });
					  });
					 });
					  
					}
						else if (respondeEdition2 == 400){
					 $('#negro p').fadeOut(function(){
					  $('#naofoi').fadeIn();
					  $('#negro').click(function(){
					  $('#naofoi').fadeOut(function(){
					  $('#negro').fadeOut();
					  $('#newss').html(' ');
					  });
					  });
					 });
					
					  
					}
					else{
					
					 alert(respondeEdition2);
					
					}
				   
			   });
	
}




