var inputs=document.getElementsByTagName("input");

for(i=0;i<inputs.length;i++){
		
	if(inputs[i].type=="text"){
		inputs[i].setAttribute('class','input-text-normal');
		
		inputs[i].onfocus = function(){
			this.setAttribute('class','input-text-focus');
		}
		
		inputs[i].onblur = function(){
			this.setAttribute('class','input-text-normal');
		}
		
	}
	
	if(inputs[i].type=="button" || inputs[i].type=="submit"){
		inputs[i].setAttribute('class','boton-off');
		
		if(inputs[i].id=='login-boton')
			inputs[i].setAttribute('style','height:40px;width:250px;');
		
		inputs[i].onmouseover = function(){
			this.setAttribute('class','boton-on');
		}

		inputs[i].onmouseout = function(){
			this.setAttribute('class','boton-off');
		}
	}
	
}
var selects=document.getElementsByTagName("select");

for(i=0;i<selects.length;i++){
	selects[i].setAttribute('class','input-text-normal');
		
	selects[i].onfocus = function(){
		this.setAttribute('class','input-text-focus');
	}
		
	selects[i].onblur = function(){
		this.setAttribute('class','input-text-normal');
	}
}

