<!--
function changeInputs()
{
	var els = document.getElementsByTagName('input');
	var elsLen = els.length;
	var i = 0;
	for ( i=0;i<elsLen;i++ )
	{
		if ( els[i].getAttribute('type') )
		{
			if (( els[i].getAttribute('type') == "checkbox" ) ||( els[i].getAttribute('type') == "text" ) || ( els[i].getAttribute('type') == "password" ) || ( els[i].getAttribute('type') == "radio" ) )
				
				
				if (els[i].getAttribute('type') == "checkbox" )
				{
					els[i].className = 'checkbox';
				} else {
				els[i].className = 'text';
				}
				
			else
				if ( els[i].getAttribute('class') != "proj" )
				{
					els[i].className = 'button';
				}
		}
	}
}
//-->
