
// -------------------------------------------------------------------------------- フォーム項目装飾
function highlightActiveInput()
{
	this.style.padding = "2px";
	this.style.border = "1px solid #B4D300";
	this.style.backgroundImage = "none";
	this.style.backgroundColor = "#F0FBD2";
}

function blurActiveInput()
{
	this.style.padding = "2px";
	this.style.border = "1px solid #cccccc";
	this.style.backgroundImage = "url(http://www.apart-design.net/wp-content/themes/apart02/img/bg_form_text.gif)";
	this.style.backgroundColor = "#ffffff";
}


function initInputHighlightScript()
{
	var formTags = ['INPUT','TEXTAREA'];
	
	for(tagCounter=0; tagCounter<formTags.length; tagCounter ++)
	{
		var formInputs = document.getElementsByTagName(formTags[tagCounter]);
		for(var no=0;no<formInputs.length;no++){
			if(formInputs[no].className && formInputs[no].className=='doNotHighlightThisInput')continue;
			
			if(formInputs[no].tagName.toLowerCase()=='input' && formInputs[no].type.toLowerCase()=='text')
			{
				formInputs[no].style.padding = '2px';
				formInputs[no].onfocus = highlightActiveInput;
				formInputs[no].onblur = blurActiveInput;
			}
		}
	}
}


