function changeInputCss()
{
	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') == "submit" ) els[i].className = 'button';
			if ( els[i].getAttribute('type') == "button" ) els[i].className = 'button';
			if ( els[i].getAttribute('type') == "file" ) els[i].className = 'txtpassfile';
			if ( els[i].getAttribute('type') == "password" ) els[i].className = 'txtpassfile';
			if ( els[i].getAttribute('type') == "text" ) els[i].className = 'txtpassfile';
			}
		}
}
// ha már van olnoad akkor ez nem fog műkodni!
window.onload = function() { changeInputCss(); }

