
/*{SOFICUS_LICENCE_AGREEMENT}*/

function tableInputHover()
{
	var sfEls = document.getElementsByTagName("INPUT");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onfocus=function() 
		{
			this.className+=" sffocus";
		}
		sfEls[i].onblur=function() 
		{
			this.className=this.className.replace("sffocus", "");
		}
	}

	var sfEls = document.getElementsByTagName("TEXTAREA");
	for (var i=0; i<sfEls.length; i++) 
	{
		sfEls[i].onfocus=function() 
		{
			this.className+=" sffocus";
		}
		sfEls[i].onblur=function() 
		{
			this.className=this.className.replace("sffocus", "");
		}
	}
}

if (window.attachEvent) 
	window.attachEvent("onload", tableInputHover);
