/*
if(!console)
	var console = {
		log: function(mixed){
			alert(mixed);
		}
	};
*/

$(function(){
	$('table.data tr, table.definition tr').click(function(){
		$(this).toggleClass('focus');
	});
})

