// javascript kütüphanesi MEHMET SALKIM - mehmetsalkim@gmail.com

function formtagstyle() 
{

	var inputs 		= document.getElementsByTagName('input');
	var textareas 	= document.getElementsByTagName('textarea');
	var i=0;
	
	// inputlar için
	for(i=0; i < inputs.length; i++) {
		if(inputs[i].type == 'text' || inputs[i].type == 'password' || inputs[i].type == 'file') {
			inputs[i].onfocus = function () { this.style.borderColor='#A9F50F'; };
			inputs[i].onblur  = function () { this.style.borderColor='#206D0F'; };
        }
	}
	
	//textarealar için
	for(i=0; i < textareas.length; i++) {
		textareas[i].onfocus = function () { this.style.borderColor='#A9F50F'; };
		textareas[i].onblur  = function () { this.style.borderColor='#206D0F'; };
	}
}