$(document).ready(function(){

			$(".example6").colorbox({iframe:true, innerWidth:425, innerHeight:344});
				
				
			$("#sumit").click(function() {
		   
		   	var email = $("#email").val(); 

			$.ajax({
					type: 'GET',
					url: "include/to-cake-mail.php",
					data: {email: email},
					success: function(response) { /*alert(response)*/ },
					error: function(xhr, type, exception) { /*alert("Error: " + type);*/ }
				})
				   
			 
			 
			 /*
			  $.get("http://link.motto.ca/oi/1/1b1650027db8f12aa8710de585576caf", { email: email },
			   function(data){
			   });
			  */
			
				$("#msg").empty();
				$("#msg").append("Merci. Vous &#234;tes maintenant inscrit &#224; la liste d'envoi &#233;lectronique de Precision 2000.");
				$("#email").val("");
			   
			   return false;

  		   });
				
				

});
