$('input#kullanici_adi').focus();
$('div.giris_yap_gorunen').hover(
  function () {
    $(this).addClass("giris_yap_gorunen_hover");
  }, 
  function () {
    $(this).removeClass("giris_yap_gorunen_hover");
  }
);
$('img#kayit_tamam').click(function(){
	$('form#uyelik').submit();
});
$('form#uyelik').submit(function(){
	$.post(sitemiz+'dahililer/ajax/uyeol.php',{ ne: "Kayit", kullanici_adi: $.trim($('input#kullanici_adi').val()), sifre: $.trim($('input#sifre').val()), email: $.trim($('input#email').val()), gun: $.trim($('select#gun').val()), ay: $.trim($('select#ay').val()), yil: $.trim($('select#yil').val()), sehir: $.trim($('select#sehir').val()), ilce: $.trim($('select#ilce').val()), cinsiyet: $.trim($('input:checked').val()), sozlesme: $.trim($('input#sozlesme:checked').val()) }, function(geldi){
		if(geldi > 0){
			window.location = sitemiz+'sayfam/panelim/';
		} else {
			$('div.uyelik_hatalar').html(geldi).slideUp(500).slideDown(500);
		}
	});
	return false;
});
function yasKontrol(element){var other;if(element.name=='yil'){other=document.getElementById('yil1');if(other.selectedIndex < element.selectedIndex){if(element.selectedIndex == element.length-1){other.selectedIndex=element.selectedIndex;}else{other.selectedIndex=element.selectedIndex+1;}}}if(element.name=='yil1'){other=document.getElementById('yil');if(other.selectedIndex > element.selectedIndex){if(element.selectedIndex==0){other.selectedIndex=element.selectedIndex;}else{other.selectedIndex=element.selectedIndex-1;}}}}
