
var myrules = {
	'form.cmxform fieldset li input' : function(el){
		el.onfocus = function(){
			this.style.backgroundColor='#F0F1F7';
		}
		el.onblur = function(){
			this.style.backgroundColor='transparent';
		}
	},
	'form.cmxform fieldset li textarea' : function(el){
		el.onfocus = function(){
			this.style.backgroundColor='#F0F1F7';
		}
		el.onblur = function(){
			this.style.backgroundColor='transparent';
		}
	}
};

Behaviour.register(myrules);

//onfocus="this.style.backgroundColor='#ffffff';" onblur="this.style.backgroundColor='transparent';" 