/*
* Coded By PM @ Green Labs MX
* Apr 2010
*/
$(function(){
	$("input#submit").click(function(){
		var email = $("#emailing").val();
		$.post('php/mailPost.php', { 
			email: email 
			},function(){
				$("form#mailingsForm").fadeOut('slow', function(){
					$("div#thanks").fadeIn('slow');
				});
			}
		);
		return false;
	});
});