//*********************************************************************************************
//
// Coded by Artis Co.,Ltd.
// http://www.artisj.com
// If you want to use this code, feel free to do so, however; please leave this message intact.
// Copyright(C) Artis Co.,Ltd. All rights reserved.
//
//*********************************************************************************************

window.onload = function tN(){
	
function Focus(){
	this.style.backgroundColor="#F0F7FF";
}

function Blur(){
	this.style.backgroundColor="#FFFFFF";
}

var n=document.forms[0].elements.length;

for(i=0;i<n;i++){
	if(document.forms[0].elements[i].type != "submit"){
		if(document.forms[0].elements[i].type != "checkbox"){
			if(document.forms[0].elements[i].type != "radio"){
				if(document.forms[0].elements[i].type != "button"){
					document.forms[0].elements[i].onfocus = Focus;
					document.forms[0].elements[i].onblur = Blur;
				}
			}
		}
	}
}

}

