$().ready(function() {
	//alert(location);
	
	$("#gonderiletisim").click(function() {
		
		var form = $("#forms").serialize();
		$("#form_area").ajaxStart(function(){
			$(this).html('<img src="../_files/images/loading.gif" />');
		});
		
		$.post('../ajaxIslemler.php',form, function(data) {
			if(data.err ==0)
			{
				$('#forms')[0].reset();
			}
			else
			{
			   $("#"+data.data).focus();	
			}
			alert(data.msg)
			$("#form_area").html(data.msg);
			
			//alert(data.data);
		},'json');


		
	});
});
