var eventScore = {
	'#tabScore tbody tr' : function (element) {
    	element.onmouseover = function() {;
			this.setStyle('background-color', '#E0E0E0');
		}
		element.onmouseout = function() {
			if (this.getProperty('class').contains('grise'))
				this.setStyle('background-color', '#f1f1f1');
			else
				this.setStyle('background-color', 'white');
		}
	}
}
Behaviour.register(eventScore);
