window.onload=function(){                      
    navRoot = document.getElementById('loginFormInput');  
    var vectorLI=navRoot.getElementsByTagName('input');  
    for (i=0; i<vectorLI.length; i++)  
    {                
        node = vectorLI[i];       
        node.onchange=function(){    
            this.className="inputOnChange"; 
        }   
        node.onfocus=function(){
            this.className="inputOnFocus"; 
        }           
        node.onblur=function(){
            this.className="inputOnBlur"; 
        }    
        //node.onmouseout=function(){     
        //  this.className=("");  
       //  }
    }  
}
