var myrules = {
		'div.programspace' : function(element){
			element.onmouseover = function(){
			this.style.backgroundColor   ="white";
			},
			element.onmouseout = function(){
			this.style.backgroundColor   ="#D9D9D9";
			}
		}
		
	};

Behaviour.register(myrules);

