$(document).ready(function() {
	$("#subgorus").click(function() {
		var adi = $("#adi").val();							  
		var adres = $("#adres").val();
		var telno = $("#telno").val();
		var oneri = $("#oneri").val();
		if (adi == "") {
			$("#adi").css("border", "1px #ff0000 solid");
			$("#adi").focus();
			return false;
		}
		if (adres == "") {
			$("#adres").css("border", "1px #ff0000 solid");
			$("#adres").focus();
			return false;
		}
		if (telno == "") {
			$("#telno").css("border", "1px #ff0000 solid");
			$("#telno").focus();
			return false;
		}
		if (oneri == "") {
			$("#oneri").css("border", "1px #ff0000 solid");
			$("#oneri").focus();
			return false;
		}
	});
	$("#iletisimsubmit").click(function() {
			var adsoyad = $("#adsoyad").val();
			var eposta = $("#eposta").val();
			var mesaj = $("#mesaj").val();
			if (adsoyad == "") {
			$("#adsoyad").css("border", "1px #ff0000 solid");
			$("#adsoyad").focus();
			return false;
		}
		if (eposta == "") {
			$("#eposta").css("border", "1px #ff0000 solid");
			$("#eposta").focus();
			return false;
		}
		if ((eposta.indexOf('@') < 0) || ((eposta.charAt(eposta.length-4) != '.') && (eposta.charAt(eposta.length-3) != '.'))) {
			$("#eposta").css("border", "1px #ff0000 solid");
			$("#eposta").focus();
			return false;
		} 
		if (mesaj == "") {
			$("#mesaj").css("border", "1px #ff0000 solid");
			$("#mesaj").focus();
			return false;
		}
	});
	$("#randevusubmit").click(function() {
			var adsoyad = $("#adsoyad").val();
			var telno = $("#telno").val();
			var eposta = $("#eposta").val();
			var rahatsizlik = $("#rahatsizlik").val();
			var aciklama = $("#aciklama").val();
		if (adsoyad == "") {
			$("#adsoyad").css("border", "1px #ff0000 solid");
			$("#adsoyad").focus();
			return false;
		}
		if (telno == "") {
			$("#telno").css("border", "1px #ff0000 solid");
			$("#telno").focus();
			return false;
		}
		if (eposta == "") {
			$("#eposta").css("border", "1px #ff0000 solid");
			$("#eposta").focus();
			return false;
		}
		if ((eposta.indexOf('@') < 0) || ((eposta.charAt(eposta.length-4) != '.') && (eposta.charAt(eposta.length-3) != '.'))) {
			$("#eposta").css("border", "1px #ff0000 solid");
			$("#eposta").focus();
			return false;
		} 
		if (rahatsizlik == "") {
			$("#rahatsizlik").css("border", "1px #ff0000 solid");
			$("#rahatsizlik").focus();
			return false;
		}
		if (aciklama == "") {
			$("#aciklama").css("border", "1px #ff0000 solid");
			$("#aciklama").focus();
			return false;
		}
	});
});
