var input_b = {
	'input' : function(element){
		element.onfocus = function(){
			if(this.type == 'text' || this.type == 'password'){
				this.style.color='#000000';
				this.style.border='1px solid #93C9F7';
				this.style.backgroundColor='#F3F9FE';
			}
		}
		element.onblur = function(){
			if(this.type == 'text' || this.type == 'password'){
				this.style.color='#666666';
				this.style.border='1px solid #666666';
				this.style.backgroundColor='#FFFFFF';
			}
		}
	}
};

Behaviour.register(input_b);
