function form_gonder(){
	$jq('#sonuc').html('Lutfen Bekleyiniz...');
	$jq.ajax({
		type: 'POST',
		url: 'Ajax-gonder.php',
		data: $jq('#myform').serialize(),
		success: function(cevap) {
			$jq('#sonuc').html(cevap);
		}
	});
}

function teklif_form_gonder(){
	$jq('#sonuc').html('Lutfen Bekleyiniz...');
	$jq.ajax({
		type: 'POST',
		url: 'Ajax-tf-gonder.php',
		data: $jq('#myform2').serialize(),
		success: function(cevap) {
			$jq('#sonuc').html(cevap);
		}
	});
}
