document.observe('dom:loaded', function() {
	$$("#left_menu td").each(function(td) {
		td.observe('mouseover', function() {
			this.addClassName('jshover');
		});
		td.observe('mouseout', function() {
			this.removeClassName('jshover');
		});
	});
});
