function cadastro(email){

		var req;
		function Initialize(){
			try{ req=new ActiveXObject("Msxml2.XMLHTTP");  }
			catch(e){
				try{ req=new ActiveXObject("Microsoft.XMLHTTP"); }
				catch(oc){ req=null; }
			}
		
			if(!req&&typeof XMLHttpRequest!="undefined"){  req = new XMLHttpRequest();	}
		}		
		
		Initialize();	
		var url="cadastro.php?email="+email;	
		if(req!=null){
			req.onreadystatechange = Process;
			req.open("GET", url, true);
			req.send(null);
		}		
		
		function Process(){  			
			document.getElementById("emailInfo").innerHTML = req.responseText;
			
			
		}
				
};


function mudar(email){	

jQuery.noConflict();
	
var $email = jQuery('div#email');
var $mensagem = jQuery('div#mensagem');

cadastro(email);
		
$email.animate({"right": "25", "opacity": "toggle"},'slow','linear',setTimeout(function(){  $mensagem.animate({"right": "-1", "opacity": "toggle"},'slow','linear') },900));
	
}



