/*///////////////////////////////////////////////////////////////////////
Ported to jquery from prototype by Joel Lisenby (joel.lisenby@gmail.com)
http://joellisenby.com

original prototype code by Aarron Walter (aarron@buildingfindablewebsites.com)
http://buildingfindablewebsites.com

Distrbuted under Creative Commons license
http://creativecommons.org/licenses/by-sa/3.0/us/
///////////////////////////////////////////////////////////////////////*/

function storeEmail()
{
		// update user interface
		//$('#mcform').html('Kaydediliyor...');
		$('#mcform').slideUp(1000,function(){


		// Prepare query string and send AJAX request
		$.ajax({
			url: 'includes/store-address.php',
			data: 'email=' + escape($('#mcemail').val())+'&ad=' + $('#mcfname').val()+'&soyad=' + $('#mclname').val(),
			success: function(msg) {
				$('#mcform').html(msg);
                                $('#mcform').slideDown(1000);
			}
		});
});
		return false;
}
