function ac(kaynak){
document.getElementById(kaynak).style.display = 'block';
}
function kapat(kaynak){
	document.getElementById(kaynak).style.display = 'none';
}

function vac(kaynak){
	document.getElementById(kaynak).style.visibility = 'visible';
}

function vkapat(kaynak){
	document.getElementById(kaynak).style.visibility = 'hidden';
}

/* ILETISIM */


function CheckElementValue(object, controlValue)
{

	if(document.getElementById(object).value == controlValue )
	{

	document.getElementById(object).className = "textareaERROR"
	document.getElementById(object).focus();
	return false; 
	}
	else
	document.getElementById(object).className = "combobox_comment"

	return true;
}


function CheckForm_Iletisim()
{ 
	if(!CheckElementValue("I_ad_soyad","" ))
	 { return false;}

	if(!CheckElementValue("I_arkadas_mail","" ))
	 { return false;}

	if(!CheckElementValue("I_telefon","" ))
	 { return false;}

	if(!CheckElementValue("I_mesaj","" ))
	 { return false;}
	 
	 if (document.getElementById("I_guvenlik").value == "6" )
	 {	
	 
	 	document.iletisim_formu.buttonh.disabled=true;
		document.iletisim_formu.buttonh.value='Continue...';
		document.iletisim_formu.submit();	}
		else	{
			alert("Plase Security Code Writer !!");
				return false;
				}
	 document.iletisim_formu.submit();
} 


/* MENU POSITION */
$(document).ready(function () {
		
		$('.catList a').hover(
			function () {
				height = $(this).height() * (-1);
				$(this).stop().animate({'backgroundPosition':'(0 ' + height + ')'}, {duration:200});	
			}, 
			
			function () {
				$(this).stop().animate({'backgroundPosition':'(0 0)'}, {duration:200});	
			}
		);
		
	});



