var myrules = {
	'input' : function(element){
		element.onfocus = function(){
			this.className += "Hovered";
		},
		element.onblur = function(){
			this.className = this.className.replace(/Hovered/g, "");
		}
	},
	'#comments' : function(element){
		element.onfocus = function(){
			if (this.value == "Please leave your comments here") {
				this.value = "";
			}
			this.className += "Hovered";
		},
		element.onblur = function(){
			if (this.value == "") {
				this.value = "Please leave your comments here";
			}
			this.className = this.className.replace(/Hovered/g, "");
		}
	}
};

Behaviour.register(myrules);